[mcs] Throw expression cannot be placed after any colon.
[mono.git] / mcs / tests / test-946.cs
1 using System;
2
3 class X
4 {
5         public static void Main ()
6         {
7
8         }
9
10         int ImportScope (int scope)
11         {
12                 switch (scope) {
13                 case 200:
14                         throw new NotImplementedException ();
15                 }
16
17                 throw new NotSupportedException ();
18         }       
19 }