Fix test data

This commit is contained in:
Mikhail Bogdanov
2020-06-19 14:51:43 +02:00
parent 99d844dcfb
commit 58183b774d
4 changed files with 11 additions and 7 deletions
@@ -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) {
}
}
}