// Copyright 2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // aux-build:custom_derive_plugin.rs // ignore-stage1 #![feature(plugin, custom_derive)] #![plugin(custom_derive_plugin)] trait TotalSum { fn total_sum(&self) -> isize; } impl TotalSum for isize { fn total_sum(&self) -> isize { *self } } struct Seven; impl TotalSum for Seven { fn total_sum(&self) -> isize { 7 } } #[derive(TotalSum)] struct Foo { seven: Seven, bar: Bar, baz: isize, } #[derive(TotalSum)] struct Bar { quux: isize, bleh: isize, } pub fn main() { let v = Foo { seven: Seven, bar: Bar { quux: 9, bleh: 3, }, baz: 80, }; assert_eq!(v.total_sum(), 99); }