module main extern "puts" func puts(text: ^i8) struct Test { test: ^i8 = "test1" } extern "main" func main(argc: i64, argv: [?]^i8) { let x: Test = {} puts(x.test) }