mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
inline parameter: check access conflicts (IDEA-40703)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
public class Subject {
|
||||
private int myInt;
|
||||
|
||||
public void withClass() {
|
||||
myInt += new Local().hashCode();
|
||||
}
|
||||
|
||||
class User {
|
||||
private void oper() throws IOException {
|
||||
Subject subj = new Subject();
|
||||
|
||||
subj.withClass();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
class Local {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user