move CAst Java test data to separate project to ease use in plugin tests

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3140 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2008-12-16 15:19:56 +00:00
parent c181f33310
commit 6fe59a49fd
1 changed files with 11 additions and 0 deletions

View File

@ -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 {
}