mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
9 lines
119 B
Nim
9 lines
119 B
Nim
|
|
# bug #4345
|
|
|
|
# only needs to compile
|
|
proc f(): tuple[a, b: uint8] = (1'u8, 2'u8)
|
|
|
|
let a, b = f()
|
|
let c = cast[int](b)
|