diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/converter/ttypeconverter1.nim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/converter/ttypeconverter1.nim b/tests/converter/ttypeconverter1.nim index b9a5e88ae..fd3a0318a 100644 --- a/tests/converter/ttypeconverter1.nim +++ b/tests/converter/ttypeconverter1.nim @@ -1,3 +1,7 @@ +discard """ + ouput: '''foo +true''' +""" converter p(i: int): bool = return i != 0 @@ -6,3 +10,6 @@ if 1: while 0: echo "bar" +var a: array[3, bool] +a[0] = 3 +echo a[0] |