[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-886.cs
blob1061355a01f1a118e6facc6c6326265615c26033
1 public class A
3 public static A Get ()
5 return null;
9 public class Test
11 void M ()
13 A A = A.Get ();
16 public static void Main ()
18 var t = new Test ();
19 t.M ();