8d860827cf
#KT-2874 Fixed
9 lines
91 B
Kotlin
9 lines
91 B
Kotlin
public trait TestTrait {
|
|
public fun f()
|
|
}
|
|
|
|
class Test: TestTrait {
|
|
fun f() = 12
|
|
}
|
|
|