Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ImplicitThisMissing.java 158B

1234567
  1. public class ImplicitThisMissing {
  2. class B {}
  3. public static void main(String[] args) {
  4. new B();
  5. System.err.println("shouldn't compile!!!");
  6. }
  7. }