[System.Runtime.Remoting] Adds System.Core reference for tests
[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 }