Merge pull request #7321 from mono/fix-linuxarm-native-stacktrace
[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;