aboutsummaryrefslogtreecommitdiff
path: root/tests/eval/qual.testscript
blob: 29f63407574adce530c721a3303ac3f3e36be897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# file      : tests/eval/qual.testscript
# license   : MIT; see accompanying LICENSE file

# Test qualified name (eval-qual).

.include ../common.testscript

$* <'print (file{foo}: bar)' >'file{foo}:bar' : target
$* <'print (foo/dir{}: bar)' >'dir{foo/}:bar' : scope

: attribute
:
$* <'([string] foo:bar)' 2>>EOE != 0
<stdin>:1:2: error: attributes before target-qualified variable name
EOE

: leader
:
$* <'(foo == foo:bar)' 2>>EOE != 0
<stdin>:1:12: error: unexpected ':'
EOE

: trailer
:
$* <'(foo:bar == foo)' 2>>EOE != 0
<stdin>:1:10: error: expected ')' after variable name
EOE