mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
25 lines
336 B
Rust
25 lines
336 B
Rust
|
// 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();
|
||
|
}
|