langtools/test/tools/javac/importChecks/ImportIsFullyQualified.java
author sogoel
Mon, 07 Jul 2014 13:39:31 -0700
changeset 25439 26d6d07eebc7
parent 5520 86e4b9a9da40
permissions -rw-r--r--
8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25439
26d6d07eebc7 8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir
sogoel
parents: 5520
diff changeset
     2
 * @test /nodynamiccopyright/
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * @bug 4335264
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary Verify that import-on-demand must be fully qualified.
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * @author maddox
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 *
25439
26d6d07eebc7 8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir
sogoel
parents: 5520
diff changeset
     7
 * @compile/fail/ref=ImportIsFullyQualified.out -XDrawDiagnostics  ImportIsFullyQualified.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
import java.awt.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
import JobAttributes.*;  // class JobAttributes is contained in package java.awt
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
public class ImportIsFullyQualified {
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
    JobAttributes.DefaultSelectionType x;
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
}