summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/inspection/dataFlow/fixture/RootThrowableCause.java
blob: 6086c92b40d4d7cf4a358704bf8868dff871e3c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Doo {

  void foo(Throwable e) {
    Throwable t = e;

    while (t.getCause() != null) t = t.getCause();
    if (e != t) {
      System.out.println();
    }
  }

}