mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inline method: check code block on inline in super/this/loop condition
IDEA-60341
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
|
||||
class Main {
|
||||
public Main() {
|
||||
this(f<caret>oo());
|
||||
}
|
||||
|
||||
public Main(boolean b) { }
|
||||
|
||||
private static boolean foo() {
|
||||
if (2 < 1) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user