12 lines
222 B
Kotlin
12 lines
222 B
Kotlin
package test
|
|
|
|
public trait NullableToNotNullKotlinSignature: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: String?)
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: String?)
|
|
}
|
|
} |