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.

NotFound.java 480B

12345678910111213141516171819
  1. import foo.bar.Bax; //ERR: can't find type foo.bar.Bax
  2. import a.b.c.*; //ERR: can't find package a.b.c
  3. public class NotFound {
  4. public static void main(String[] args) {
  5. g(). //ERR: method g() not found
  6. bar();
  7. Mumble m = //ERR: type Mumble not found
  8. new Mumble(); //ERR: type Mumble not found
  9. m.go();
  10. Mumble m2 = null; //ERR: type Mumble not found
  11. CONST //ERR: CONST not found
  12. .m(1);
  13. }
  14. }