aboutsummaryrefslogtreecommitdiff
path: root/tests/quote/buildfile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/quote/buildfile')
-rw-r--r--tests/quote/buildfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/quote/buildfile b/tests/quote/buildfile
index 6dd22b4..19c2bfc 100644
--- a/tests/quote/buildfile
+++ b/tests/quote/buildfile
@@ -19,4 +19,14 @@ print $foo'bar'
print $foo"$bar"
print "$foo"bar
+# Quoting and evaluation context.
+#
+print ("x{foo bar}")
+#print "(x{foo bar})" # multiple values in concatenating context expansion
+print "({foo})"
+print "('foo bar')"
+print "("foo bar")"
+print "("$foo bar")"
+print "("$foo ($bar)")"
+
./: