ignores
[mcs.git] / errors / cs0165-12.cs
blobf92a873c489e6eaeb4ee17edc2c528d9b7ad3e65
1 // cs0165-12.cs: Use of unassigned local variable `foo'
2 // Line: 17
4 class X
6 static void Main ()
8 int foo;
10 int i = 0;
11 if (i == 1)
12 goto e;
14 goto f;
17 i += foo;
20 goto b;
23 foo = 5;
26 goto c;