[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-455.cs
blob18da8ef051d698924e57220dc54a09218904a627
1 using System;
3 namespace ConsoleApplication1
5 class Program
7 public static void Main ()
9 object o = new object ();
10 Inner<object>.Compare (o, o);
14 public class Inner<T> where T : class
16 public static void Compare (object obj, T value)
18 if (obj != value) { }