#KT-10797 Fixed

This commit is contained in:
hedgehog
2016-04-04 13:21:11 +03:00
committed by Dmitry Jemerov
parent 62212e7da9
commit 02d4376b85
7 changed files with 55 additions and 0 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)
}