rust/tests/ui/string-box-error.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
428 B
Rust
Raw Normal View History

//@ run-pass
// Ensure that both `Box<dyn Error + Send + Sync>` and `Box<dyn Error>` can be
// obtained from `String`.
use std::error::Error;
fn main() {
2019-05-28 18:47:21 +00:00
let _err1: Box<dyn Error + Send + Sync> = From::from("test".to_string());
let _err2: Box<dyn Error> = From::from("test".to_string());
let _err3: Box<dyn Error + Send + Sync + 'static> = From::from("test");
let _err4: Box<dyn Error> = From::from("test");
}