Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0269-2.cs
1 // CS0269: Use of unassigned out parameter `a'
2 // Line: 9
3
4 public class A
5 {
6         void Test(out A a)
7         {
8                 a.ToString ();
9                 a = null;
10         }
11 }