mirror of
https://github.com/ziglang/zig.git
synced 2025-12-26 16:13:07 +00:00
```zig
fn foo(a: anytype, b: @TypeOf(a)) void { _ = b; }
test {
// foo evaluates to `fn (type) void` and must be called inline
foo(u32, u32);
}
```