diff --git a/com.ibm.wala.cast.java.test.data/src/p/NonPrimaryTopLevel.java b/com.ibm.wala.cast.java.test.data/src/p/NonPrimaryTopLevel.java new file mode 100644 index 000000000..530742f87 --- /dev/null +++ b/com.ibm.wala.cast.java.test.data/src/p/NonPrimaryTopLevel.java @@ -0,0 +1,11 @@ +package p; + +public class NonPrimaryTopLevel { + public static void main(String[] args) { + NonPrimaryTopLevel nptl= new NonPrimaryTopLevel(); + Foo f = new Foo(); + } +} +class Foo { + +} \ No newline at end of file