mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 17:28:00 +02:00
26 lines
321 B
Beef
26 lines
321 B
Beef
![]() |
#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;
|
||
|
}
|
||
|
}
|
||
|
}
|