correct way to check if intention is applicable; revert: Delete test that is transformed syntax error

This commit is contained in:
Dmitry Jemerov
2016-10-13 15:19:06 +02:00
parent 925c48c2f0
commit b1b171fbc5
2 changed files with 19 additions and 1 deletions
@@ -0,0 +1,9 @@
// IS_APPLICABLE: false
fun test() {
class Test{
fun contains(a: Int) : Boolean = true
}
val test = Test()
test.c<caret>ontains(0)
}