[SLC] Treat error class types as not-nullable

This commit is contained in:
Pavel Mikhailovskii
2023-05-11 11:48:45 +00:00
committed by Space Team
parent bdad2e5c88
commit 25c0725da9
9 changed files with 31 additions and 21 deletions
@@ -1,9 +1,11 @@
public final class Derived /* some.Derived*/ implements other.Unresolved {
@org.jetbrains.annotations.NotNull()
private final other.Unresolved x = null /* initializer type: null */;
@org.jetbrains.annotations.NotNull()
public final other.Unresolved getX();// getX()
public Derived();// .ctor()
public final other.Unresolved getX();// getX()
public final void takeA(other.Unresolved);// takeA(other.Unresolved)
public final void takeA(@org.jetbrains.annotations.NotNull() other.Unresolved);// takeA(other.Unresolved)
}