3d8d92c7d3
- test data files renamed from *.jet to *.kt
17 lines
187 B
Kotlin
17 lines
187 B
Kotlin
trait B {
|
|
fun bar() {}
|
|
}
|
|
|
|
class C() {
|
|
fun bar() {
|
|
}
|
|
}
|
|
|
|
fun test(a : Any?) {
|
|
if (a is B) {
|
|
if (a is C) {
|
|
a.<!OVERLOAD_RESOLUTION_AMBIGUITY!>bar()<!>;
|
|
}
|
|
}
|
|
}
|