1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-26 11:38:02 +02:00

Fixed generic inner type alias with type extensions

This commit is contained in:
Brian Fiete 2020-06-23 11:54:28 -07:00
parent 8169587b4c
commit 0154b75923
4 changed files with 62 additions and 8 deletions

View file

@ -1,4 +1,6 @@
using System;
using System.Collections;
namespace LibA
{
interface IVal
@ -26,6 +28,11 @@ namespace LibA
let t = new T();
delete t;
}
public static bool DictEquals(Dictionary<String, int> lhs, Dictionary<String, int> rhs)
{
return lhs == rhs;
}
}
}