Commit a11744ca authored by peter's avatar peter
Browse files

adapt dfa testAlexBug to jdk notnull inference

parent f98006ed
Branches unavailable Tags unavailable
No related merge requests found
Showing with 4 additions and 2 deletions
+4 -2
public class Test {
public String foo(String path) {
String smth = new String(path);
public Test(String s) { }
public Test foo(String path) {
Test smth = new Test(path);
if (path == null) return null;
return smth;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment