mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
29 lines
691 B
Kotlin
Vendored
29 lines
691 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
inline class Id(val id: String)
|
|
|
|
inline class Name(val name: String)
|
|
|
|
inline class Password(val password: String)
|
|
|
|
fun test(id: Id) {
|
|
if (id.id != "OK") throw AssertionError()
|
|
}
|
|
|
|
fun test(id: Id?) {
|
|
if (id != null) throw AssertionError()
|
|
}
|
|
|
|
fun test(name: Name) {
|
|
if (name.name != "OK") throw AssertionError()
|
|
}
|
|
|
|
fun test(password: Password) {
|
|
if (password.password != "OK") throw AssertionError()
|
|
}
|
|
|
|
// 1 public final static test-tmnojjU\(Ljava/lang/String;\)V
|
|
// 1 public final static test-hI9h0ro\(Ljava/lang/String;\)V
|
|
// 1 public final static test-75PUH38\(Ljava/lang/String;\)V
|
|
// 1 public final static test-3mN7H-Y\(Ljava/lang/String;\)V
|