1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 17:28:00 +02:00
Beef/IDE/Tests/BugW006/src/Program.bf

26 lines
321 B
Beef
Raw Normal View History

2020-12-25 05:22:02 -08:00
#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;
}
}
}