mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
28 lines
461 B
V
28 lines
461 B
V
import (
|
|
os
|
|
time as t
|
|
crypto.sha256
|
|
math
|
|
log as l
|
|
crypto.sha512
|
|
)
|
|
|
|
struct TestAliasInStruct {
|
|
time t.Time
|
|
}
|
|
|
|
fn test_import() {
|
|
info := l.Level.info
|
|
assert os.O_RDONLY == os.O_RDONLY && t.month_days[0] == t.month_days[0] && sha256.size ==
|
|
sha256.size && math.pi == math.pi && info == .info && sha512.size == sha512.size
|
|
}
|
|
|
|
fn test_alias_in_struct_field() {
|
|
a := TestAliasInStruct{
|
|
time: t.Time{
|
|
year: 2020
|
|
}
|
|
}
|
|
assert a.time.year == 2020
|
|
}
|