1 2 3 4 5 6 7 8 9 10
export rsrc; fn foo(_x: i32) { } class rsrc { let x: i32; new(x: i32) { self.x = x; } drop { foo(self.x); } }