Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0469.cs
blob61f3c5b43e662cdd421a1de7cd4919605dd7aee6
1 // cs0469.cs: The `goto case' value is not implicitly convertible to type `char'
2 // Line: 16
3 // Compiler options: -warnaserror -warn:2
5 class Test
7 static void Main()
9 char c = 'c';
10 switch (c)
12 case 'A':
13 break;
15 case 'a':
16 goto case 65;