summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/inspection/dataFlow/AlexBug/src/Test.java
blob: e397de3faf8a36a21ca23dd2d2eff88812156cb4 (plain)
1
2
3
4
5
6
7
8
9
public class Test {
  public Test(String s) { }

  public Test foo(String path) {
    Test smth = new Test(path);
    if (path == null) return null;
    return smth;
  }
}