Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs0153.cs
1 // CS0153: A goto case is only valid inside a switch statement
2 // Line: 7
3
4 class X {
5         void Main ()
6         {
7                 goto default;
8         }
9 }