1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-22 01:37:59 +02:00

Fixed atom deletion issue

This commit is contained in:
Brian Fiete 2020-12-25 05:22:02 -08:00
parent 2130b7d60c
commit 27a586df04
9 changed files with 133 additions and 18 deletions

View file

@ -0,0 +1,25 @@
#pragma warning disable 168
using System;
using System.Collections;
namespace Bug
{
class Program
{
//*Test_Definition
public class Test<T, K> where K: enum
{
typealias x = function void (T t);
//Test_Y
typealias y = (K);
}
/*@*/
public static int Main(String[] args)
{
return 0;
}
}
}