This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
4d55affc12
rust
/
tests
/
ui
/
issues
/
issue-24353.rs
9 lines
92 B
Rust
Raw
Normal View
History
Unescape
Escape
Add `// run-pass` annotations to all the tests under `ui/run-pass/`. (I may have accidentally added it to some auxilliary crates as well; my emacs-macro-based methodology was pretty crude.)
2018-08-30 07:18:55 -05:00
// run-pass
Add `#![allow(..)]` as necessary to get re-migrated run-pass tests compiling with clean stderr again. Most were added mechanically.
2018-09-25 16:51:35 -05:00
#![
allow(unreachable_code)
]
Fix ICE when returning a variable whose declaration is unreachable Fixes #24353
2015-04-13 06:05:19 -05:00
fn
main
(
)
{
return
(
)
;
let
x
=
(
)
;
x
}
Reference in New Issue
Copy Permalink