Merge pull request #13 from vazexqi/ASTJavaTypeInference-PrimAndStringOp-bug

Add the test file to com.ibm.wala.cast.java.test.data/src for pull request #12
This commit is contained in:
Manu Sridharan 2013-03-30 08:40:00 -07:00
commit 2f55ba8b5b
2 changed files with 9 additions and 0 deletions

BIN
com.ibm.wala.cast.java.jdt.test/testdata/test_project.zip vendored Executable file → Normal file

Binary file not shown.

View File

@ -0,0 +1,9 @@
package javaonepointfive;
public class TypeInferencePrimAndStringOp {
public static void main(String[] args) {
int a = 2;
String result = "a" + a;
}
}