You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

QualifiedThisExactness.java 147B

123456789
  1. class Nimbo {}
  2. public class QualifiedThisExactness extends Nimbo {
  3. class Goo {
  4. void main() {
  5. System.err.println(Nimbo.this);
  6. }
  7. }
  8. }