1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/tests/module_test.v
2019-07-28 17:20:24 +02:00

19 lines
287 B
Go

import os
import time as t
import crypto.sha256 as s2
import (
math
log as l
crypto.sha512 as s5
)
pub fn main() {
assert os.SUCCESS == os.SUCCESS &&
t.MonthDays[0] == t.MonthDays[0] &&
s2.Size == s2.Size &&
math.Pi == math.Pi &&
l.INFO == l.INFO &&
s5.Size == s5.Size
}