mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
293 B
Rust
20 lines
293 B
Rust
// aux-build: issue-75801.rs
|
|
|
|
// Regression test for #75801.
|
|
|
|
#[macro_use]
|
|
extern crate issue_75801;
|
|
|
|
macro_rules! foo {
|
|
($arg:expr) => {
|
|
#[foo]
|
|
fn bar() {
|
|
let _bar: u32 = $arg;
|
|
}
|
|
};
|
|
}
|
|
|
|
foo!("baz"); //~ ERROR: mismatched types [E0308]
|
|
|
|
fn main() {}
|