16 lines
363 B
C#
Raw Normal View History

// CS1524: Unexpected symbol `return', expecting `catch' or `finally'
// Line: 12
namespace Test {
public class Test {
public static int Main () {
int a;
try {
a = 1;
}
return 0;
}
}
}