Renamed tests

This commit is contained in:
Valentin Kipyatkov
2015-09-30 18:27:56 +03:00
parent 5fddefbf4d
commit 3f64b25df3
14 changed files with 51 additions and 51 deletions
@@ -0,0 +1,19 @@
import kotlin.platform.platformName
class C(i: Int){
class Nested
inner class Inner
fun bar() {
foo(<caret>)
}
}
platformName("foo1")
fun foo(p: () -> C.Nested){}
platformName("foo2")
fun foo(p: () -> C.Inner){}
// EXIST: ::Nested
// ABSENT: ::Inner