< prev index next >

test/langtools/tools/javac/patterns/BindingsTest2.java

Print this page
rev 57117 : [mq]: 8234922


 170 
 171             s.length();
 172         }
 173 
 174         {
 175             do {
 176                 if (false) break;
 177             } while (!(o1 instanceof String s));
 178 
 179             s.length();
 180         }
 181 
 182         {
 183             do {
 184                 while (true);
 185                 break;
 186             } while (!(o1 instanceof String s));
 187 
 188             s.length();
 189         }






















































 190     }
 191 }


 170 
 171             s.length();
 172         }
 173 
 174         {
 175             do {
 176                 if (false) break;
 177             } while (!(o1 instanceof String s));
 178 
 179             s.length();
 180         }
 181 
 182         {
 183             do {
 184                 while (true);
 185                 break;
 186             } while (!(o1 instanceof String s));
 187 
 188             s.length();
 189         }
 190 
 191         {
 192             L: while (!(o1 instanceof String s)) {
 193                 break L;
 194             }
 195 
 196             s.length();
 197         }
 198 
 199         {
 200             L: for (; !(o1 instanceof String s); ) {
 201                 break L;
 202             }
 203 
 204             s.length();
 205         }
 206 
 207         {
 208             L: do {
 209                 break L;
 210             } while (!(o1 instanceof String s));
 211 
 212             s.length();
 213         }
 214 
 215         {
 216             L: {
 217                 while (!(o1 instanceof String s)) {
 218                     break L;
 219                 }
 220 
 221                 s.length();
 222             }
 223         }
 224 
 225         {
 226             L: {
 227                 for (; !(o1 instanceof String s); ) {
 228                     break L;
 229                 }
 230 
 231                 s.length();
 232             }
 233         }
 234 
 235         {
 236             L: {
 237                 do {
 238                     break L;
 239                 } while (!(o1 instanceof String s));
 240 
 241                 s.length();
 242             }
 243         }
 244     }
 245 }
< prev index next >