mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
17 lines
209 B
Java
17 lines
209 B
Java
// "Create method 'foo'" "true"
|
|
interface Comparable<T> {
|
|
}
|
|
|
|
class R implements Comparable<R> {
|
|
|
|
}
|
|
|
|
class A1<T> {
|
|
}
|
|
|
|
class B1 {
|
|
A1<R> a;
|
|
void foo (Comparable<R> c) {
|
|
c = a.<caret>foo();
|
|
}
|
|
} |