2003-01-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / errors / cs0153.cs
1 // cs0153.cs: goto default only allowed in switch statement
2 // Line:
3 class X {
4         void Main ()
5         {
6                 goto default;
7         }
8 }