blob: 13ce9d46ff8d45b72a40f5827fe1a111af3913c3 (
plain)
1
2
3
4
5
6
7
8
|
const bogus = @import(
"bogus-does-not-exist.zig",
);
// error
//
// bogus-does-not-exist.zig:1:1: error: unable to load 'bogus-does-not-exist.zig': FileNotFound
// :2:5: note: file imported here
|