fix int_test.v

pull/3699/head
Alexander Medvednikov 2020-02-07 22:16:14 +01:00
parent d66bc24e7f
commit 18c440c990
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ fn test_float_equal_operator() {
assert a.gebit(1) assert a.gebit(1)
f := 1.2 f := 1.2
ab := f as int ab := int(f)
assert ab == 1 assert ab == 1
} }