mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
postfix template fix ternary operator + test
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
void m(String s) {
|
||||
Object o = s.isEmpty() ? s.concat("a").cast<caret> : s.concat("b");
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
void m(String s) {
|
||||
Object o = s.isEmpty() ? (() s.concat("a")) : s.concat("b");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user