Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0165-9.cs
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 16
3
4 using System;
5
6 public class Test
7 {
8         public int i;
9
10         public void Hoge ()
11         {
12                 if (i > 0)
13                         goto Fuga;
14                 string s = "defined later";
15         Fuga:
16                 Console.WriteLine (s);
17         }
18 }