1 2 3 4 5 6 7 8 9 10 11
use delegate_attr::delegate; struct Foo(Vec<u8>); #[delegate(x)] #[cfg(not(fake))] impl Foo { x } fn main() {}