1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-27 03:58:01 +02:00

Fixed lookup for inner type declared in a generic base class

This commit is contained in:
Brian Fiete 2024-09-09 11:18:36 -04:00
parent b7e47027c3
commit d9fd93ccbd
2 changed files with 26 additions and 1 deletions

View file

@ -1,5 +1,7 @@
#pragma warning disable 168
using System.Collections;
namespace Tests
{
class ClassE
@ -120,4 +122,9 @@ namespace Tests
}
}
}
class DictExt : Dictionary<int, float>
{
Entry mEntry;
}
}