mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
12 lines
289 B
Java
12 lines
289 B
Java
/* @test /nodynamiccopyright/
|
|
* @bug 8037385
|
|
* @summary Must not allow static interface method invocation in legacy code
|
|
* @compile -Xlint:-options StaticInvokeSimple.java
|
|
*/
|
|
import java.util.stream.Stream;
|
|
|
|
class StaticInvokeSimple {
|
|
void test() {
|
|
Stream.empty();
|
|
}
|
|
}
|