mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
14 lines
192 B
Nim
14 lines
192 B
Nim
discard """
|
|
output: '''true
|
|
true
|
|
true'''
|
|
"""
|
|
|
|
# bug 1420
|
|
var x = 40'u32
|
|
var y = 30'u32
|
|
echo x > y # works
|
|
|
|
echo((40'i32) > (30'i32))
|
|
echo((40'u32) > (30'u32)) # Error: ordinal type expected
|