[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-295.cs
blob45a6cb3d3fe842d9bc07357e7d533ba33d2e5ab6
1 namespace Test {
2 class Cache<T> where T : class {
5 class Base {
8 class MyType<T> where T : Base {
9 Cache<T> _cache; // CS0452
12 class Foo { public static void Main () { object foo = new MyType<Base> (); } }