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,14 @@
|
||||
class Outer {
|
||||
class User {
|
||||
public class Subject {
|
||||
public void withClass(Object <caret>o) {
|
||||
System.out.println(o.toString());
|
||||
}
|
||||
}
|
||||
|
||||
private void oper() {
|
||||
Subject subj = new Subject();
|
||||
subj.withClass(Outer.this);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user