2423b7b62f
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
19 lines
446 B
Plaintext
Vendored
19 lines
446 B
Plaintext
Vendored
public final class Test {
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String ignoredProperty = "";
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String nonIgnoredProperty = "";
|
|
|
|
public Test() {
|
|
super();
|
|
}
|
|
|
|
public final void nonIgnoredFun() {
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getNonIgnoredProperty() {
|
|
return null;
|
|
}
|
|
}
|