Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git] / mcs / errors / cs0165-32.cs
blobfb9652267c8976f546d2a05a8807ca70b48f141c
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 9
4 class C
6 static void Main ()
8 int a;
9 Foo (out a, a);
12 static void Foo (out int a, int b)
14 a = b;