rust/src/test/ui/proc-macro/nested-item-spans.rs

25 lines
336 B
Rust
Raw Normal View History

// aux-build:nested-item-spans.rs
extern crate nested_item_spans;
use nested_item_spans::foo;
#[foo]
fn another() {
fn bar() {
let x: u32 = "x"; //~ ERROR: mismatched types
}
bar();
}
fn main() {
#[foo]
fn bar() {
let x: u32 = "x"; //~ ERROR: mismatched types
}
bar();
another();
}