langtools/test/tools/javac/protectedAccess/ProtectedMemberAccess4.out
author sogoel
Thu, 05 Jun 2014 10:57:10 -0700
changeset 24797 850ebd4d80a7
parent 10 06bc494ca11e
permissions -rw-r--r--
8044072: Group 2: create .out files for OverrideChecks 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
ProtectedMemberAccess4.java:29: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
  int i = x.pi;                                 // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
           ^
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
ProtectedMemberAccess4.java:32: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
  int n = sx.pi;                                // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
            ^
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
ProtectedMemberAccess4.java:35: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
  static int sn = sx.pi;                        // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
                    ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
ProtectedMemberAccess4.java:38: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
  int w = x.pm();                               // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
           ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
ProtectedMemberAccess4.java:41: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
  int u = sx.pm();                              // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
            ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
ProtectedMemberAccess4.java:66: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
    sx.pi  = 1;                                 // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
ProtectedMemberAccess4.java:69: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
    lx.pi  = 1;                                 // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
ProtectedMemberAccess4.java:72: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
    int n = sx.pi;                              // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
ProtectedMemberAccess4.java:75: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
    int k = lx.pi;                              // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
ProtectedMemberAccess4.java:78: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
    int u = sx.pm();                            // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
ProtectedMemberAccess4.java:81: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
    int w = lx.pm();                            // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
ProtectedMemberAccess4.java:108: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
    x.pi  = 1;                                  // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
     ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
ProtectedMemberAccess4.java:111: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
    sx.pi  = 1;                                 // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
ProtectedMemberAccess4.java:114: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
    lx.pi  = 1;                                 // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
      ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
ProtectedMemberAccess4.java:117: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
    int t = x.pm();                             // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
             ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
ProtectedMemberAccess4.java:120: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    int u = sx.pm();                            // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
ProtectedMemberAccess4.java:123: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    int w = lx.pm();                            // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
ProtectedMemberAccess4.java:126: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    int i = x.pi;                               // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
             ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
ProtectedMemberAccess4.java:129: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    int n = sx.pi;                              // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
ProtectedMemberAccess4.java:132: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    int k = lx.pi;                              // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
ProtectedMemberAccess4.java:157: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    int i = x.pi;                               // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
             ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
ProtectedMemberAccess4.java:160: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    int n = sx.pi;                              // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
ProtectedMemberAccess4.java:166: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    int w = x.pm();                             // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
             ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
ProtectedMemberAccess4.java:169: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    int u = sx.pm();                            // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
ProtectedMemberAccess4.java:197: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
      x.pi  = 1;                                // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
       ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
ProtectedMemberAccess4.java:200: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
      sx.pi  = 1;                               // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
ProtectedMemberAccess4.java:203: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
      lx.pi  = 1;                               // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
ProtectedMemberAccess4.java:206: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
      int t = x.pm();                           // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
               ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
ProtectedMemberAccess4.java:209: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
      int u = sx.pm();                          // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
                ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
ProtectedMemberAccess4.java:212: pm() has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
      int w = lx.pm();                          // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
                ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
ProtectedMemberAccess4.java:215: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
      int i = x.pi;                             // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
               ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
ProtectedMemberAccess4.java:218: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
      int n = sx.pi;                            // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
                ^
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
ProtectedMemberAccess4.java:221: pi has protected access in pkg.SuperClass
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
      int k = lx.pi;                            // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
                ^
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
33 errors