2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-10-10 21:41:50 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4094658
|
|
|
|
* @summary Test enforcement of JLS 6.6.1 and 6.6.2 rules requiring that
|
|
|
|
* the type to which a component member belongs be accessible in qualified
|
|
|
|
* names.
|
2014-10-10 21:41:50 +00:00
|
|
|
* @compile/fail/ref=QualifiedAccess_4.out -XDrawDiagnostics QualifiedAccess_4.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import pack1.P1;
|
|
|
|
|
|
|
|
class CMain {
|
|
|
|
|
|
|
|
class Foo {
|
|
|
|
class Bar {}
|
|
|
|
}
|
|
|
|
Foo.Bar yy = x.new Foo.Bar(); // ERROR - Type in qualified 'new' must be unqualified
|
|
|
|
}
|