// Test, that the autogenerated `free` method compiles, // on a struct that has field names that are C/C++ keywords. struct Class { class string register string namespace string normal string } fn main() { class := &Class{'abc', '123', '456', 'xyz'} println(class) class.free() }