Skip to content

Commit

Permalink
Add 82327
Browse files Browse the repository at this point in the history
  • Loading branch information
fanninpm committed Feb 20, 2021
1 parent 7f9dcc0 commit efc7b97
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ices/82327.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

rustc -Zunpretty=everybody_loops - <<'EOF'
mod foo {
pub fn bar() {}
}
fn main() {
let _ = || -> Result<(), ()> { try!(Ok(())); Ok(()) }; // issue #37345
macro_rules! m { () => {
$crate::foo::bar(); // issue #37357
::foo::bar(); // issue #38682
} }
m!();
}
EOF

0 comments on commit efc7b97

Please sign in to comment.