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.

Main.java 192B

123456789101112
  1. package c;
  2. import b.Bar;
  3. import b.Foo;
  4. public class Main {
  5. public static void main(String [] args) {
  6. Foo foo = new Foo();
  7. System.out.println(foo instanceof Bar);
  8. }
  9. }