blob: 52abe4d94c43951bb2121c4d53670564d8e4e878 [file] [log] [blame]
// "Do not try to create class Inner" "false"
public class Test {
public static void main() {
new Inner<caret>();
}
public static class Inner {}
}