[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git] / mcs / errors / cs0165-21.cs
blob2f6bbc1a4e6dcb2a49e47b73ce1c9699ea5d2db9
1 // CS0165: Use of unassigned local variable `v'
2 // Line: 17
4 using System;
6 class C
8 void Test (int arg)
10 int v;
11 switch (arg) {
12 case 1:
13 v = 0;
14 break;
17 Console.WriteLine (v);