aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runnable/fixed_word_max.elna
blob: 8fb8d275a080f54c7b09d21cfe6ffb3cdcd906f5 (plain)
1
2
3
4
5
6
7
8
9
program()
begin
  assert(#max(Word8) = 255u8);
  assert(#max(Word16) = 65535u16);
  assert(#max(Word32) = 4294967295u32);
  assert(#max(Word64) = 18446744073709551615u64)
return 0u8

end.