fa2cb78a09
Problem when constructor resolution returns an erroneous symbol Reviewed-by: jjg
19 lines
391 B
Java
19 lines
391 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 6857948
|
|
* @summary 6857948: Calling a constructor with a doubly bogus argument causes an internal error
|
|
* @author Maurizio Cimadamore
|
|
*
|
|
* @compile/fail/ref=T6857948.out -XDrawDiagnostics T6857948.java
|
|
*/
|
|
|
|
class Foo {
|
|
Foo(String v) {}
|
|
};
|
|
|
|
class Test {
|
|
public static void main() {
|
|
Foo f = new Foo("Hello!",nosuchfunction()) {};
|
|
}
|
|
}
|