Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
rfcs
/
rfc-1937-termination-trait
/
termination-trait-for-box-dyn-error-ok.rs
blob: fd343eaeea95be4138f29f9c4997142cda669766 [
file
] [
log
] [
blame
]
//@ run-pass
use
std
::
error
::
Error
;
fn
main
()
->
Result
<(),
Box
<
dyn
Error
>>
{
Ok
(())
}