aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs195/550494/Code.java
blob: c7d05ff6afa24d1c4498757c00fdd3b603d09324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class Code {
	public static void main(String[] argv) {
	}

  static aspect X {
    before(): execution(* Code.main(..)) {
	System.out.println(
"""
This
is
on
multiple
lines
"""
);
    }
  }

}