mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
25 lines
393 B
Rust
25 lines
393 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
struct Element;
|
|
|
|
macro_rules! foo {
|
|
($tag: expr, $string: expr) => {
|
|
if $tag == $string {
|
|
let element: Box<_> = Box::new(Element);
|
|
unsafe {
|
|
return std::mem::transmute::<_, usize>(element);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn bar() -> usize {
|
|
foo!("a", "b");
|
|
0
|
|
}
|
|
|
|
fn main() {
|
|
bar();
|
|
}
|