more test files for symbol substitutions

git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@395 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
marcobaye 2024-08-13 10:49:56 +00:00
parent 169541d452
commit 8ac8d98cd0
2 changed files with 10 additions and 0 deletions

5
testing/errors/subst6.a Normal file
View File

@ -0,0 +1,5 @@
*=$1000
!set inner = 6
!set outer = 7
; substitutions cannot be nested
base?(?(inner)outer) nop ; -> "no string given", "syntax error"

5
testing/errors/subst7.a Normal file
View File

@ -0,0 +1,5 @@
*=$1000
!set inner = 6
!set outer = "?(inner)"
; substitution results are not substituted again
base?(outer) nop ; -> "syntax error"