mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
10 lines
262 B
Java
10 lines
262 B
Java
import java.util.function.IntFunction;
|
|
|
|
class Outer<K> {
|
|
public Outer() { }
|
|
|
|
{
|
|
//wrong number of parameters as well as a wrong expected type
|
|
final IntFunction<Outer[]> aNew = Outer::<error descr="Cannot resolve constructor 'Outer'">new</error>;
|
|
}
|
|
} |