Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

24 lines
265 B
C#

// CS0159: The label `default:' could not be found within the scope of the goto statement
// Line: 10
class X {
static int m (int n)
{
switch (n){
case 0:
goto default;
case 1:
return 1;
}
return 10;
}
static void Main ()
{
m (1);
}
}