struct Zzz { x int } fn (z Zzz) str(x int) string { return 'z: ${z.x}' } fn main() { println(Zzz{123}) }