3d8d92c7d3
- test data files renamed from *.jet to *.kt
10 lines
84 B
Kotlin
10 lines
84 B
Kotlin
class Foo {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun Any?.foo() {}
|
|
|
|
fun test(f : Foo?) {
|
|
f.foo()
|
|
}
|