mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
11 lines
151 B
Java
11 lines
151 B
Java
// "Make 'a' implement 'b'" "true-preview"
|
|
class a {
|
|
void f(b<String> r) {
|
|
r.g(<caret>this);
|
|
}
|
|
}
|
|
interface b<T> {
|
|
void g(b<T> t);
|
|
}
|
|
|