Skip to content

Commit

Permalink
Add 83641
Browse files Browse the repository at this point in the history
  • Loading branch information
fanninpm committed Apr 2, 2021
1 parent 8ceca40 commit 4d698fb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ices/83641.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

rustc --crate-type=lib --crate-name=repro - <<'EOF'
#![feature(pub_macro_rules)]
pub macro_rules! fail {
($x:expr) => { $x }
}
EOF

rustc -L. - <<'EOF'
extern crate repro;
fn main() {
repro::fail!(recv);
}
EOF

0 comments on commit 4d698fb

Please sign in to comment.