blob: d105afd9a5d7f169592e36c4c45b85c915284264 [file] [log] [blame]
class MyException extends RuntimeException {
public MyException(String[] s) {}
}
class XXX {
{
throw new MyException(new String[<caret>]);
}
}