[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-563.cs
bloba5b208b9ef32a10fa9072926524008ef52356b24
1 using System;
3 struct S
7 class C<U>
9 static void Foo<T> (T value) where T : U
13 public static void Test (S? s)
15 C<S?>.Foo (s);
16 C<ValueType>.Foo (s);
17 C<object>.Foo (s);
21 class M
23 public static void Main ()
25 C<int>.Test (null);