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:
parent
8169587b4c
commit
0154b75923
4 changed files with 62 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue