Files
rust/tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-for-box-dyn-error-ok.rs

7 lines
92 B
Rust
Raw Normal View History

//@ run-pass
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
Ok(())
}