b44dc55109
There was a refactoring of AbstractDiagnosticsTest in 9052ef06 which
contains bug that `setupEnvironment` for AbstractDiagnosticsTestUsingJavac
was not called, so for last year tests `UsingJavac` had no difference
with usual diagnostics tests which causes some contradictions in test data
24 lines
417 B
Kotlin
Vendored
24 lines
417 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !SKIP_JAVAC
|
|
// FIR_IDENTICAL
|
|
// !LANGUAGE: +InlineClasses
|
|
|
|
package kotlin.jvm
|
|
|
|
annotation class JvmInline
|
|
|
|
@JvmInline
|
|
value class Name(val name: String)
|
|
@JvmInline
|
|
value class Password(val password: String)
|
|
|
|
interface NameVerifier {
|
|
fun verify(name: Name)
|
|
}
|
|
|
|
interface PasswordVerifier {
|
|
fun verify(password: Password)
|
|
}
|
|
|
|
interface NameAndPasswordVerifier : NameVerifier, PasswordVerifier
|