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:
parent
1a44732189
commit
d46c60d956
3 changed files with 22 additions and 5 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue