1 2 3 4 5 6 7 8 9 10 11 12 13 14
// @import("basic.felan"); f :: (comptime t:type) -> type { return struct { a:t; }; }; main :: () -> void { a :: u8; f(a); };