RmoveUnnecessaryParenthesesIntention

This commit is contained in:
Wojciech Lopata
2013-04-04 13:36:33 +02:00
parent 3e76fc2902
commit cd0e1b7508
32 changed files with 299 additions and 5 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
trait Foo {
fun get(x : Any) : Foo
fun plus(x : Any) : Foo
}
fun foo(x: Foo) {
<caret>(x + x)[x]
}