Diffstat (limited to 'tests/builder_struct.rs')
| -rw-r--r-- | tests/builder_struct.rs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/builder_struct.rs b/tests/builder_struct.rs index aabad24..8aca415 100644 --- a/tests/builder_struct.rs +++ b/tests/builder_struct.rs @@ -293,18 +293,15 @@ impl<'ctx, M, E: Effect> builders::core::r#struct::StructTypeInfo<'ctx, M, E> fo pub mod demo { use crate::Walk; use macro_rules_attribute::derive; - use treaty::{ - effect::{Blocking}, - transform, Build, DefaultMode, - }; + use treaty::{effect::Blocking, transform, Build, DefaultMode}; - #[derive(Build!, Walk!, Debug)] + #[derive(Walk!, Debug)] pub struct X { pub a: bool, pub b: bool, } - #[derive(Build!, Walk!, Debug)] + #[derive(Build!, Debug)] pub struct Y { pub b: bool, pub a: bool, |