Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/ignoredMembers.txt
T
Ivan Gavrilovic dfdd107fc0 Update KAPT stubs for tests
Update expected outputs so they match
the new sorting rules.
2021-01-13 22:49:09 +09:00

22 lines
491 B
Plaintext
Vendored

import java.lang.System;
@kotlin.Metadata()
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;
}
}