[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-292.cs
blob13dce4ed3fd5bf176906832dee04f82ab671e02f
1 namespace Test
3 public delegate void Handler<TA> (TA sender)
4 where TA: A<TA>;
6 public class A<TA>
7 where TA: A<TA>
8 { }
11 class X
13 public static void Main ()
14 { }