X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=tests%2Fui%2Fnon_send_fields_in_send_ty.stderr;h=60df4e226e4fa47078c43dc3bb66e1ff30e3e6e3;hb=3c8f90bd5a03872a9b9088facc3bf9ec8ac42dd0;hp=aeaaef794f9545cf7867a8ebe75a9fdbcf3a83db;hpb=ee0d71e103a7de8afe225ba5357c446b08a6fbe3;p=rust.git diff --git a/tests/ui/non_send_fields_in_send_ty.stderr b/tests/ui/non_send_fields_in_send_ty.stderr index aeaaef794f9..60df4e226e4 100644 --- a/tests/ui/non_send_fields_in_send_ty.stderr +++ b/tests/ui/non_send_fields_in_send_ty.stderr @@ -1,4 +1,4 @@ -error: there are some fields in `RingBuffer` are not safe to be sent to another thread +error: some fields in `RingBuffer` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:16:1 | LL | unsafe impl Send for RingBuffer {} @@ -12,7 +12,7 @@ LL | data: Vec>, | ^^^^^^^^^^^^^^^^^^^^^^^^ = help: add bounds on type parameter `T` that satisfy `Vec>: Send` -error: there are some fields in `MvccRwLock` are not safe to be sent to another thread +error: some fields in `MvccRwLock` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:24:1 | LL | unsafe impl Send for MvccRwLock {} @@ -25,7 +25,7 @@ LL | lock: Mutex>, | ^^^^^^^^^^^^^^^^^^^ = help: add bounds on type parameter `T` that satisfy `Mutex>: Send` -error: there are some fields in `ArcGuard` are not safe to be sent to another thread +error: some fields in `ArcGuard` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:32:1 | LL | unsafe impl Send for ArcGuard {} @@ -38,7 +38,7 @@ LL | head: Arc, | ^^^^^^^^^^^^^ = help: add bounds on type parameter `RC` that satisfy `Arc: Send` -error: there are some fields in `DeviceHandle` are not safe to be sent to another thread +error: some fields in `DeviceHandle` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:48:1 | LL | unsafe impl Send for DeviceHandle {} @@ -51,7 +51,7 @@ LL | context: T, | ^^^^^^^^^^ = help: add `T: Send` bound in `Send` impl -error: there are some fields in `NoGeneric` are not safe to be sent to another thread +error: some fields in `NoGeneric` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:55:1 | LL | unsafe impl Send for NoGeneric {} @@ -64,7 +64,7 @@ LL | rc_is_not_send: Rc, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ = help: use a thread-safe type that implements `Send` -error: there are some fields in `MultiField` are not safe to be sent to another thread +error: some fields in `MultiField` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:63:1 | LL | unsafe impl Send for MultiField {} @@ -89,7 +89,7 @@ LL | field3: T, | ^^^^^^^^^ = help: add `T: Send` bound in `Send` impl -error: there are some fields in `MyOption` are not safe to be sent to another thread +error: some fields in `MyOption` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:70:1 | LL | unsafe impl Send for MyOption {} @@ -102,7 +102,7 @@ LL | MySome(T), | ^ = help: add `T: Send` bound in `Send` impl -error: there are some fields in `MultiParam` are not safe to be sent to another thread +error: some fields in `MultiParam` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:82:1 | LL | unsafe impl Send for MultiParam {} @@ -115,7 +115,7 @@ LL | vec: Vec<(A, B)>, | ^^^^^^^^^^^^^^^^ = help: add bounds on type parameters `A, B` that satisfy `Vec<(A, B)>: Send` -error: there are some fields in `HeuristicTest` are not safe to be sent to another thread +error: some fields in `HeuristicTest` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:100:1 | LL | unsafe impl Send for HeuristicTest {} @@ -128,7 +128,7 @@ LL | field4: (*const NonSend, Rc), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = help: use a thread-safe type that implements `Send` -error: there are some fields in `AttrTest3` are not safe to be sent to another thread +error: some fields in `AttrTest3` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:119:1 | LL | unsafe impl Send for AttrTest3 {} @@ -141,7 +141,7 @@ LL | Enum2(T), | ^ = help: add `T: Send` bound in `Send` impl -error: there are some fields in `Complex` are not safe to be sent to another thread +error: some fields in `Complex` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:127:1 | LL | unsafe impl

Send for Complex {} @@ -154,7 +154,7 @@ LL | field1: A, | ^^^^^^^^^ = help: add `P: Send` bound in `Send` impl -error: there are some fields in `Complex>` are not safe to be sent to another thread +error: some fields in `Complex>` are not safe to be sent to another thread --> $DIR/non_send_fields_in_send_ty.rs:130:1 | LL | unsafe impl Send for Complex> {}