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
11f1810831
rust
/
tests
/
ui
/
rfcs
/
rfc-1937-termination-trait
/
termination-trait-for-box-dyn-error.rs
7 lines
91 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
Fix ICE with `main`'s return type containing lifetimes
2018-04-05 08:50:48 -05:00
use
std
::
error
::
Error
;
fn
main
(
)
->
Result
<
(
)
,
Box
<
dyn
Error
>
>
{
Ok
(
(
)
)
}
Reference in New Issue
Copy Permalink