diff options
| author | Jubilee <workingjubilee@gmail.com> | 2025-07-04 23:26:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-04 23:26:23 -0700 |
| commit | 5f415da0b52fa8de667ce53ec5daf76fca6a0591 (patch) | |
| tree | 5c2c965d8d781e131a6f46dcb4e0c8e0748b4316 /tests/ui/traits/error-trait-object-from-string.rs | |
| parent | 069f571fad6c4f99aa1cdc9367bc51a758a9f5e6 (diff) | |
| parent | 066a281f60fd5071a50cf15a28ed40f15bef7563 (diff) | |
| download | rust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.tar.gz rust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.zip | |
Rollup merge of #143300 - Kivooeo:tf25, r=tgross35
`tests/ui`: A New Order [25/N] > [!NOTE] > > Intermediate commits are intended to help review, but will be squashed prior to merge. Some `tests/ui/` housekeeping, to trim down number of tests directly under `tests/ui/`. Part of rust-lang/rust#133895. r? `@tgross35`
Diffstat (limited to 'tests/ui/traits/error-trait-object-from-string.rs')
| -rw-r--r-- | tests/ui/traits/error-trait-object-from-string.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/traits/error-trait-object-from-string.rs b/tests/ui/traits/error-trait-object-from-string.rs new file mode 100644 index 00000000000..896f164a04d --- /dev/null +++ b/tests/ui/traits/error-trait-object-from-string.rs @@ -0,0 +1,13 @@ +//! Check that `String` and `&str` can be converted into `Box<dyn Error>` and +//! `Box<dyn Error + Send + Sync>` trait objects + +//@ run-pass + +use std::error::Error; + +fn main() { + 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"); +} |
