cleol
[mcs.git] / errors / cs0165-2.cs
blob4c408286f4543d259f9e9db643f107ae05757213
1 // cs0165.cs: Use of unassigned local variable `x'
2 // Line: 16
4 class T {
5 void fun (ref int a)
7 if (a == 3)
8 a = 2;
11 void x ()
13 int x;
15 if (System.Console.Read () == 1)
16 x = 1;
17 fun (ref x);