2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:test-macros.rs
|
2018-07-22 08:48:29 -07:00
|
|
|
|
2019-05-22 01:09:58 +03:00
|
|
|
#[macro_use]
|
|
|
|
extern crate test_macros;
|
2018-07-22 08:48:29 -07:00
|
|
|
|
2019-05-22 01:09:58 +03:00
|
|
|
#[recollect_attr]
|
2018-07-22 08:48:29 -07:00
|
|
|
fn another() {
|
|
|
|
fn bar() {
|
|
|
|
let x: u32 = "x"; //~ ERROR: mismatched types
|
|
|
|
}
|
|
|
|
|
|
|
|
bar();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2019-05-22 01:09:58 +03:00
|
|
|
#[recollect_attr]
|
2018-07-22 08:48:29 -07:00
|
|
|
fn bar() {
|
|
|
|
let x: u32 = "x"; //~ ERROR: mismatched types
|
|
|
|
}
|
|
|
|
|
|
|
|
bar();
|
|
|
|
another();
|
|
|
|
}
|