Files
linux-packaging-mono/mcs/tests/test-503.cs

16 lines
163 B
C#
Raw Normal View History

// Compiler options: -warnaserror
class Foo {
public static int Main ()
{
for (;;) {
try {
break;
} catch {
continue;
}
}
return 0;
}
}