diff options
Diffstat (limited to 'test-files/mds-kbdc/simplify-tree/valid/nested_alternations_in_macro_call')
-rw-r--r-- | test-files/mds-kbdc/simplify-tree/valid/nested_alternations_in_macro_call | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test-files/mds-kbdc/simplify-tree/valid/nested_alternations_in_macro_call b/test-files/mds-kbdc/simplify-tree/valid/nested_alternations_in_macro_call new file mode 100644 index 0000000..d40a68d --- /dev/null +++ b/test-files/mds-kbdc/simplify-tree/valid/nested_alternations_in_macro_call @@ -0,0 +1,29 @@ +my_macro([[1 2] [3 4]]) + +# (macro_call (@ 1 0-8) ‘my_macro’ +# (.arguments +# (string (@ 1 11-12) ‘1’) +# ) +# ) +# (macro_call (@ 1 0-8) ‘my_macro’ +# (.arguments +# (string (@ 1 13-14) ‘2’) +# ) +# ) +# (macro_call (@ 1 0-8) ‘my_macro’ +# (.arguments +# (string (@ 1 17-18) ‘3’) +# ) +# ) +# (macro_call (@ 1 0-8) ‘my_macro’ +# (.arguments +# (string (@ 1 19-20) ‘4’) +# ) +# ) +# :1:10–11: warning: alternation inside alternation is unnecessary +# my_macro([[1 2] [3 4]]) +# ^ +# :1:16–17: warning: alternation inside alternation is unnecessary +# my_macro([[1 2] [3 4]]) +# ^ + |