mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
9 lines
134 B
Kotlin
Vendored
9 lines
134 B
Kotlin
Vendored
// Generic
|
|
|
|
interface Generic<N, NN: Any> {
|
|
fun a(n: N): N
|
|
fun b(nn: NN): NN
|
|
|
|
fun a1(n: N?): N?
|
|
fun b1(nn: NN?): NN?
|
|
} |