mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
cs: use any var in declaration statement fixed (IDEA-58344)
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
class C {
|
||||
C(C c){}
|
||||
}
|
||||
|
||||
class Usage {
|
||||
void foo() {
|
||||
C c1 = new C(null);
|
||||
C c2 = new C(c1);
|
||||
}
|
||||
|
||||
void bar() {
|
||||
C c1 = new C(null), c2 = new C(c1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user