Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
import_of_missing_module.zig
pretty
plain
permalink
blame
history
•
8 lines
•
137 B
1
const foo = @import("foo");
2
comptime {
3
_ = foo;
4
}
5
6
// error
7
//
8
// :1:21: error: no module named 'foo' available within module 'root'