mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
577 B
Java
Vendored
11 lines
577 B
Java
Vendored
public final class AnnotatedParameterInInnerClassConstructor {
|
|
public AnnotatedParameterInInnerClassConstructor() { /* compiled code */ }
|
|
|
|
public final class Inner {
|
|
public Inner(@test.Anno(x = "a") @org.jetbrains.annotations.NotNull java.lang.String a, @test.Anno(x = "b") @org.jetbrains.annotations.NotNull java.lang.String b) { /* compiled code */ }
|
|
}
|
|
|
|
public final class InnerGeneric <T> {
|
|
public InnerGeneric(@test.Anno(x = "a") T a, @test.Anno(x = "b") @org.jetbrains.annotations.NotNull java.lang.String b) { /* compiled code */ }
|
|
}
|
|
} |