Add CLI test for -Xnullability-annotations

This commit is contained in:
Victor Petukhov
2021-06-11 10:30:10 +03:00
parent b0a44705b4
commit 50ad5116b5
8 changed files with 27 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
fun bar(a: A, b: B) {
a.foo(null)
a.bar().hashCode()
b.foo(null)
}