Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/ClassWithConstructorAndProperties.java
Igor Yakovlev 309bf49a83 Update lightclass tests renderer
+mute invalid old light classes tests
2020-09-11 12:49:04 +03:00

16 lines
670 B
Java
Vendored

public final class ClassWithConstructorAndProperties /* ClassWithConstructorAndProperties*/ {
@org.jetbrains.annotations.NotNull()
private final java.lang.String notNull;
@org.jetbrains.annotations.Nullable()
private final java.lang.String nullable;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getNotNull();// getNotNull()
@org.jetbrains.annotations.Nullable()
public final java.lang.String getNullable();// getNullable()
public ClassWithConstructorAndProperties(@org.jetbrains.annotations.Nullable() java.lang.String, @org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(java.lang.String, java.lang.String)
}