diff --git a/plugins/kapt3/kapt3-compiler/testData/converter/defaultImpls.txt b/plugins/kapt3/kapt3-compiler/testData/converter/defaultImpls.txt index 7d77c0ee665..34960cb63eb 100644 --- a/plugins/kapt3/kapt3-compiler/testData/converter/defaultImpls.txt +++ b/plugins/kapt3/kapt3-compiler/testData/converter/defaultImpls.txt @@ -14,7 +14,8 @@ public abstract interface Intf { super(); } - public static int getColor(Intf $this) { + public static int getColor(@org.jetbrains.annotations.NotNull() + Intf $this) { return 0; } } @@ -51,7 +52,8 @@ public abstract interface IntfWithDefaultImpls { super(); } - public static void a(IntfWithDefaultImpls $this) { + public static void a(@org.jetbrains.annotations.NotNull() + IntfWithDefaultImpls $this) { } } } diff --git a/plugins/kapt3/kapt3-compiler/testData/converter/kt27126.txt b/plugins/kapt3/kapt3-compiler/testData/converter/kt27126.txt index 7d18d5b083c..9b1ef49ee4a 100644 --- a/plugins/kapt3/kapt3-compiler/testData/converter/kt27126.txt +++ b/plugins/kapt3/kapt3-compiler/testData/converter/kt27126.txt @@ -67,8 +67,7 @@ import java.lang.System; public abstract class NullableBundleProperty implements kotlin.properties.ReadWriteProperty { private final java.lang.String key = null; - private final java.lang.String toKey(@org.jetbrains.annotations.NotNull() - kotlin.reflect.KProperty $this$toKey) { + private final java.lang.String toKey(kotlin.reflect.KProperty $this$toKey) { return null; } diff --git a/plugins/kapt3/kapt3-compiler/testData/converter/kt28306.txt b/plugins/kapt3/kapt3-compiler/testData/converter/kt28306.txt index 061f9d66c15..73467767a5e 100644 --- a/plugins/kapt3/kapt3-compiler/testData/converter/kt28306.txt +++ b/plugins/kapt3/kapt3-compiler/testData/converter/kt28306.txt @@ -14,7 +14,8 @@ public abstract interface InterfaceWithDefaults { super(); } - public static void foo(foo.InterfaceWithDefaults $this) { + public static void foo(@org.jetbrains.annotations.NotNull() + foo.InterfaceWithDefaults $this) { } } } @@ -36,7 +37,8 @@ public abstract interface SubInterface extends foo.I } @java.lang.Override() - public static void foo(foo.SubInterface $this) { + public static void foo(@org.jetbrains.annotations.NotNull() + foo.SubInterface $this) { } } } diff --git a/plugins/kapt3/kapt3-compiler/testData/converter/methodParameterNames.txt b/plugins/kapt3/kapt3-compiler/testData/converter/methodParameterNames.txt index 0302d276df2..9891cc7ef2a 100644 --- a/plugins/kapt3/kapt3-compiler/testData/converter/methodParameterNames.txt +++ b/plugins/kapt3/kapt3-compiler/testData/converter/methodParameterNames.txt @@ -38,7 +38,8 @@ public abstract interface Intf { } @org.jetbrains.annotations.NotNull() - public static java.lang.String bar(Intf $this, int bcd) { + public static java.lang.String bar(@org.jetbrains.annotations.NotNull() + Intf $this, int bcd) { return null; } }