aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/@export_with_undeclared_identifier.zig
blob: 01c3b4000ecb8b6e77db980523331b829a8159ec (plain)
1
2
3
4
5
6
7
8
9
export fn a() void {
    @export(bogus, .{ .name = "bogus_alias" });
}

// error
// backend=stage2
// target=native
//
// :2:13: error: use of undeclared identifier 'bogus'