Fix indentation, spacing.
[mono-project.git] / mcs / errors / cs0269-2.cs
blobb5683616dd222e6c2028e22a3990b050107623f8
1 // CS0269: Use of unassigned out parameter `a'
2 // Line: 9
4 public class A
6 void Test(out A a)
8 a.ToString ();
9 a = null;