[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0165-9.cs
blob4f2a1e066cf693b93a63f45c3682c6f0fcd30294
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 16
4 using System;
6 public class Test
8 public int i;
10 public void Hoge ()
12 if (i > 0)
13 goto Fuga;
14 string s = "defined later";
15 Fuga:
16 Console.WriteLine (s);