behavior: correct tests after #18816

This commit is contained in:
mlugg
2024-03-05 07:27:17 +00:00
parent 2c4ac44f25
commit a7cac5fc8e
3 changed files with 30 additions and 13 deletions

View File

@@ -23,8 +23,12 @@ test "@src" {
test "@src used as a comptime parameter" {
const S = struct {
fn Foo(comptime _: std.builtin.SourceLocation) type {
return struct {};
fn Foo(comptime src: std.builtin.SourceLocation) type {
return struct {
comptime {
_ = src;
}
};
}
};
const T1 = S.Foo(@src());