16 lines
131 B
C#
Raw Normal View History

class X {
public static void Main ()
{
int n = 0;
try {
} finally {
switch (n){
case 0:
break;
}
}
}
}