diff options
Diffstat (limited to 'tests/features195/textblock/Code2.java')
-rw-r--r-- | tests/features195/textblock/Code2.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/features195/textblock/Code2.java b/tests/features195/textblock/Code2.java index f0b39e08b..7020b67a5 100644 --- a/tests/features195/textblock/Code2.java +++ b/tests/features195/textblock/Code2.java @@ -6,10 +6,10 @@ public class Code2 { 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 """); } } - |