mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
12 lines
483 B
Java
12 lines
483 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;
|
|
A s3 = true ? ((<warning descr="Casting '() -> {...}' to 'A' is redundant">A</warning>) () -> "") : null;
|
|
}
|
|
|
|
interface A extends Supplier<String> {}
|
|
} |