summary refs log blame commit diff stats
path: root/tests/tuples/tuint_tuple.nim
blob: 24bcead5e629820743af8c0f9822b47237d01b55 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                
# bug #1986 found by gdmoore

proc test(): int64 =
  return 0xdeadbeef.int64

const items = [
  (var1: test(), var2: 100'u32),
  (var1: test(), var2: 192'u32)
]