Skip to content

Commit 4d698fb

Browse files
committed
Add 83641
Issue: rust-lang/rust#83641
1 parent 8ceca40 commit 4d698fb

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

ices/83641.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
rustc --crate-type=lib --crate-name=repro - <<'EOF'
4+
#![feature(pub_macro_rules)]
5+
pub macro_rules! fail {
6+
($x:expr) => { $x }
7+
}
8+
EOF
9+
10+
rustc -L. - <<'EOF'
11+
extern crate repro;
12+
fn main() {
13+
repro::fail!(recv);
14+
}
15+
EOF

0 commit comments

Comments
 (0)