mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
11 lines
373 B
Java
11 lines
373 B
Java
import java.util.function.Supplier;
|
|
|
|
class Test {
|
|
{
|
|
Object o = true ? ((Supplier<String>) () -> "") : null;
|
|
Supplier<String> s1 = true ? ((<warning descr="Casting '() -> {...}' to 'Supplier<String>' is redundant">Supplier<String></warning>) () -> "") : null;
|
|
Supplier<String> s2 = true ? ((A) () -> "") : null;
|
|
}
|
|
|
|
interface A extends Supplier<String> {}
|
|
} |