summary refs log tree commit diff stats
path: root/tests/misc/tunsignedcmp.nim
blob: a66fbaae1b1ca510411c892f34f3eafc179597b3 (plain) (
discard """
  output: '''true
true
true'''
"""

# bug 1420
import unsigned

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