[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0269.cs
blobff5ddd6def557ee5858e5ff38d25dd845335e2c0
1 // CS0269: 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);