mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
inline parameter: evaluate this expression (IDEA-40666)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class User {
|
||||
public class Subject {
|
||||
private int myInt;
|
||||
|
||||
public void withClass() {
|
||||
myInt += User.this.hashCode();
|
||||
}
|
||||
}
|
||||
|
||||
private void oper() {
|
||||
Subject subj = new Subject();
|
||||
subj.withClass();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user