blob: fd89d8b1208154f20bc0cd65c486e9362df2ac66 [file] [log] [blame]
// "Create Method 'foo'" "true"
interface Int<T> {
}
class A1<T> implements Int<T> {
}
class B1 {
A1<String> a;
void foo (Int<String> c) {
a.<caret>foo(c);
}
}