// @import("basic.felan");

f :: (comptime t:type) -> type {
  return struct {
    a:t;
  };
};

main :: () -> void {
  a :: u8;
  f(a);
};