mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
19 lines
452 B
Java
19 lines
452 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8238213
|
|
* @summary Method resolution should stop on static error
|
|
* @compile/fail/ref=ShouldStopOnStaticError.out -XDrawDiagnostics ShouldStopOnStaticError.java
|
|
*/
|
|
|
|
public class ShouldStopOnStaticError {
|
|
static void foo() {
|
|
test1(5.0);
|
|
test2((Double)5.0);
|
|
}
|
|
|
|
void test1(double d) {}
|
|
void test1(Double d) {}
|
|
|
|
void test2(Number n) {}
|
|
static void test2(Double... d) {}
|
|
}
|