9688c3e761
Merge-request: KT-MR-14244 Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
20 lines
447 B
Plaintext
Vendored
20 lines
447 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;
|
|
}
|
|
}
|