mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-26 00:11:33 +07:00
[java-intentions] ChangeParameterClassFix: fixes after a review
IJ-CR-101642 GitOrigin-RevId: ed911621e808a7bf1ceff70a321685df424e3ec1
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4cd808e3b0
commit
36545aa244
@@ -0,0 +1,13 @@
|
||||
// "Make 'a' implement 'b'" "true-preview"
|
||||
class a implements b<String> {
|
||||
void f(b<String> r) {
|
||||
r.g(this);
|
||||
}
|
||||
|
||||
public void g(b<String> t) {
|
||||
|
||||
}
|
||||
}
|
||||
interface b<T> {
|
||||
void g(b<T> t);
|
||||
}
|
||||
Reference in New Issue
Block a user