// @import("basic.felan"); f :: (comptime t:type,a:t) -> t { return a; }; main :: () -> void { b:u8 = 2; f(u8,b); f(u8,b); };