1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

module caching: generate type aliases

This commit is contained in:
Alexander Medvednikov
2019-10-12 04:09:37 +03:00
parent 4cd9099f74
commit 4c91a5c94b
4 changed files with 12 additions and 2 deletions

View File

@ -4,6 +4,6 @@ fn test_nr_cpus() {
$if linux {
nr_cpus := runtime.nr_cpus()
println(nr_cpus)
assert nr_cpus > 0
assert nr_cpus >= 0
}
}