blob: ed5752452436dbd68d3e64d3dd0f10ddfe0d9156 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 8145987
* @summary Assertion failure when compiling stream with type annotation
* @compile/fail/ref=AnnotatedMethodSelectorTest.out -XDrawDiagnostics AnnotatedMethodSelectorTest.java
*/
class AnnotatedMethodSelectorTest {
@interface A {}
static public void main(String... args) {
java.util.@A Arrays.stream(args);
}
}