cleol
[mcs.git] / errors / cs0269.cs
bloba0a713baba29e13426afa413c8ab41332c7ebf1f
1 // cs0269.cs: Use of unassigned out parameter `a'
2 // Line: 23
4 struct A
6 public int a;
7 public A (int foo)
9 a = foo;
13 class X
15 static void test_output (A a)
19 static void test5 (out A a)
21 test_output (a);
22 a = new A (5);