1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed tuple duplicate name check circular dependency issue

This commit is contained in:
Brian Fiete 2020-10-17 16:31:46 -07:00
parent 1a44732189
commit d46c60d956
3 changed files with 22 additions and 5 deletions

View file

@ -1,6 +1,7 @@
#pragma warning disable 168
using System;
using System.Collections;
namespace Tests
{
@ -118,6 +119,11 @@ namespace Tests
int32 mB;
}
struct StructK
{
Dictionary<int, StructK> dict;
}
[Test]
static void TestBasics()
{