// "Create Method 'foo'" "true" interface Int { } class A1 implements Int { } class B1 { A1 a; void foo (Int c) { a.foo(c); } }