blob: ae95651b780a84ca888d22c93b888a003b54b694 [file] [log] [blame]
class Foo {
interface Jjj {
int[] jjj(int p);
}
void useJjj(Jjj p) {
p.jjj(9);
}
void test() {
((Jjj) int[]::new).jjj(9);
}
}