blob: 4fc93f6d29bdafb51f1dbe37bc9bee34f4c200bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
discard """
nimout: '''
msg1
msg2
'''
action: compile
nimoutFull: true
"""
# should fail because `msg3` is not in nimout and `nimoutFill: true` was given
static:
echo "msg1"
echo "msg2"
echo "msg3"
|