This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2024-11-28 09:44:08 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
1f90d857d7
rust
/
tests
/
ui
/
issues
/
issue-27268.rs
5 lines
67 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 12:18:55 +00:00
// run-pass
Fix an ICE with a closure in a constant. Fixes issue #27268.
2015-07-24 22:51:54 +00:00
fn
main
(
)
{
Update run-pass test suite to use dyn
2019-05-28 18:47:21 +00:00
const
_C
:
&
'static
dyn
Fn
(
)
=
&
|
|
{
}
;
Fix an ICE with a closure in a constant. Fixes issue #27268.
2015-07-24 22:51:54 +00:00
}
Reference in New Issue
Copy Permalink