1 2 3 4 5 6 7 8 9 10 11
// CS0269: Use of unassigned out parameter `a' // Line: 9 public class A { void Test(out A a) { a.ToString (); a = null; } }