aboutsummaryrefslogtreecommitdiff
path: root/tests/variable/scope-specific/testscript
blob: 1f5f5fbffef3a25e67ecee00ace13b726a46e8a6 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# file      : tests/variable/scope-specific/testscript
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

.include ../../common.test

: basic-line
:
$* <<EOI >>EOO
x = x
foo/ x = X
foo/ [uint64] y=00
print $x
print $(foo/ x)
print $(foo/ y)
EOI
x
X
0
EOO

: basic-block
:
$* <<EOI >>EOO
x = x
foo/
{
  x = X
  [uint64] y = 00
  print $x
}
print $x
print $(foo/ y)
EOI
X
x
0
EOO

: expect-assignment
:
$* <<EOI 2>>EOE != 0
foo/ [uint64] y
EOI
<stdin>:1:16: error: variable assignment expected instead of <newline>
EOE

: unexpected-attribute
:
$* <<EOI 2>>EOE != 0
[uint64] foo/ y = 0
EOI
<stdin>:1:1: error: attributes before scope directory
EOE