blob: c2b5767715b95cb0c427cb36daba7105765e81c9 (
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
28
|
# file : tests/eval/qual.testscript
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# 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
|