aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features195/textblock/Code2.java
blob: 7020b67a5619b5cc2ba3613c1f0cebfdefc60170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Code2 {
  public static void main(String[] argv) {
  }
}

aspect X {

  before(): execution(* Code2.main(..)) {
    // Caveat: Putting the closing '"""' on a separate line adds a line break and 'println' (not 'print'!) adds another.
    System.out.println("""
		       this is a text
                       block in advice
                       """);
  }
}