blob: c01fce90593babeba2f19fdab2aebdf8e4f5e2c6 [file] [log] [blame]
// aux-build:attribute-spans-preserved.rs
extern crate attribute_spans_preserved as foo;
use foo::foo;
#[ foo ( let y: u32 = "z"; ) ] //~ ERROR: mismatched types
#[ bar { let x: u32 = "y"; } ] //~ ERROR: mismatched types
fn main() {
}