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