[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0165-4.cs
bloba5168c5866785ccb08c6273b3310e51a010b8e63
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 9
4 class C {
5 public static int test4 ()
7 int a;
9 try {
10 a = 3;
11 } catch {
14 // CS0165
15 return a;