mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
java records: component used in outer class: search/rename fixes (IDEA-248803)
GitOrigin-RevId: 658be1b62e613484e82b1e7f24f1157813021179
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f0c43f370b
commit
b93c815fbf
@@ -0,0 +1,8 @@
|
||||
class Main {
|
||||
private record Rec(int x, int y) {
|
||||
}
|
||||
|
||||
{
|
||||
int i = new Rec(1, 0).<caret>x;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class Main {
|
||||
private record Rec(int baz, int y) {
|
||||
}
|
||||
|
||||
{
|
||||
int i = new Rec(1, 0).baz;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user