Remove unused test fixtures

This commit is contained in:
Edwin Cheng 2021-03-28 10:41:18 +08:00
parent eedadd7024
commit 7729879118

View File

@ -846,11 +846,7 @@ fn resolve_macro_def() {
pub macro structs($($i:ident),*) {
$(struct $i { field: u32 } )*
}
structs!(Foo);
//- /nested.rs
structs!(Bar, Baz);
"#,
expect![[r#"
crate