circuit Foo { f: u32, function bar() -> u32 { return self.f } } function main() { let a = Foo { f: 1u32 }; let b = a.bar(); assert_eq!(b, 1u32); }