langtools/test/tools/javac/QualifiedAccess/QualifiedAccess_1.out
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 10 06bc494ca11e
child 863 3113c955a388
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
QualifiedAccess_1.java:22: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
    P1.P3 bar;                                  // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
QualifiedAccess_1.java:23: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
    P1.P3.P4 baz;                               // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
QualifiedAccess_1.java:24: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
    P1.P3.P4.P5 quux;                           // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
QualifiedAccess_1.java:27: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
    P1.P3 m12() {return null;}                  // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
QualifiedAccess_1.java:28: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
    P1.P3.P4 m13() {return null;}               // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
QualifiedAccess_1.java:29: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
    P1.P3.P4.P5 m14() {return null;}            // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
QualifiedAccess_1.java:32: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
    void m22(P1.P3 x) {}                        // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
               ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
QualifiedAccess_1.java:33: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
    void m23(P1.P3.P4 x) {}                     // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
               ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
QualifiedAccess_1.java:34: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
    void m24(P1.P3.P4.P5 x) {}                  // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
               ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
QualifiedAccess_1.java:44: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
        P1.P3 bar = null;                       // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
          ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
QualifiedAccess_1.java:45: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
        P1.P3.P4 baz = null;                    // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
          ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
QualifiedAccess_1.java:46: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
        P1.P3.P4.P5 quux = null;                // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
          ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
QualifiedAccess_1.java:57: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
        Object bar = (P1.P3)null;               // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
                        ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
QualifiedAccess_1.java:58: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
        Object baz = (P1.P3.P4)null;            // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
                        ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
QualifiedAccess_1.java:59: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
        Object quux = (P1.P3.P4.P5)null;        // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
                         ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
QualifiedAccess_1.java:70: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
        boolean bar = null instanceof P1.P3;            // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
                                        ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
QualifiedAccess_1.java:71: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
        boolean baz = null instanceof P1.P3.P4;         // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
                                        ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
QualifiedAccess_1.java:72: pack1.P1.P3 is not public in pack1.P1; cannot be accessed from outside package
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        boolean quux = null instanceof P1.P3.P4.P5;     // ERROR
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
                                         ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
18 errors