blob: cea935413598f9236df1a16338f5da6aca6dd309 [file] [log] [blame]
//file
package demo;
class Test {
static void bar(int a) {
if (a < 0)
throw new RuntimeException("a = " + a);
}
}