mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
13 lines
181 B
Java
13 lines
181 B
Java
// "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);
|
|
}
|
|
} |