mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
This is needed, for example, to approximate flexible types correctly when rendering them in the code
14 lines
464 B
Plaintext
14 lines
464 B
Plaintext
package test
|
|
|
|
public trait NotNullToNullable {
|
|
|
|
public trait Sub : test.NotNullToNullable.Super {
|
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.String!): kotlin.Unit
|
|
}
|
|
|
|
public trait Super {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun foo(/*0*/ org.jetbrains.annotations.NotNull() p0: kotlin.String!): kotlin.Unit
|
|
}
|
|
} |