Merge foreign annotation tests for sources and binaries into single directory

This commit is contained in:
Victor Petukhov
2021-05-12 20:18:47 +03:00
parent df2c95e444
commit 8602d1fcf0
66 changed files with 762 additions and 421 deletions
@@ -0,0 +1,7 @@
// FILE: A.java
import org.checkerframework.checker.nullness.qual.*;
import java.util.*;
class A {
List<@NonNull String> foo() { return null; }
}