aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-engine/test-resources/mediumtest/xoo/sample-multiline/xources/hello/WithFlow.xoo
blob: 9dc4685fe84a0fe2cf500fa86b673bf46495c2a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package hello;

public class HelloJava {

  public static void main(String[] args) {
    {xoo-start-flow:1:1:1}if (true){xoo-end-flow:1:1:1} {
      {xoo-start-flow:1:1:2}if (true){xoo-end-flow:1:1:2} {
        {xoo-start-issue:1}if (true){xoo-end-issue:1} {
          System.out.println("Hello");
        }
      }
    }
  }
}