2025-07-30 17:33:17 +08:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_load` intrinsic: expected basic integer or pointer type, found `&dyn Fn()`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:55:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_load::<_, { SeqCst }>(p);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_xchg` intrinsic: expected basic integer or pointer type, found `&dyn Fn()`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:65:5
|
|
|
|
|
|
|
|
|
|
|
LL | intrinsics::atomic_xchg::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2025-07-30 17:33:17 +08:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_load` intrinsic: expected basic integer or pointer type, found `Foo`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:35:5
|
|
|
|
|
|
|
|
|
|
|
LL | intrinsics::atomic_load::<_, { SeqCst }>(p);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_xchg` intrinsic: expected basic integer or pointer type, found `Foo`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:45:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_xchg::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-07-30 17:33:17 +08:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_cxchg` intrinsic: expected basic integer or pointer type, found `&dyn Fn()`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:70:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_cxchg::<_, { SeqCst }, { SeqCst }>(p, v, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_store` intrinsic: expected basic integer or pointer type, found `&dyn Fn()`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:60:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_store::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_cxchg` intrinsic: expected basic integer or pointer type, found `Foo`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:50:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_cxchg::<_, { SeqCst }, { SeqCst }>(p, v, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_store` intrinsic: expected basic integer or pointer type, found `Foo`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:40:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_store::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-07-19 23:23:40 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_load` intrinsic: expected basic integer or pointer type, found `[u8; 100]`
|
2019-12-14 04:28:32 +01:00
|
|
|
--> $DIR/non-integer-atomic.rs:75:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_load::<_, { SeqCst }>(p);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_xchg` intrinsic: expected basic integer or pointer type, found `[u8; 100]`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:85:5
|
|
|
|
|
|
|
|
|
|
|
LL | intrinsics::atomic_xchg::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2025-07-30 17:33:17 +08:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_load` intrinsic: expected basic integer or pointer type, found `bool`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:15:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-07-30 17:33:17 +08:00
|
|
|
LL | intrinsics::atomic_load::<_, { SeqCst }>(p);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_xchg` intrinsic: expected basic integer or pointer type, found `bool`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:25:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
LL | intrinsics::atomic_xchg::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_cxchg` intrinsic: expected basic integer or pointer type, found `[u8; 100]`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:90:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2025-05-28 18:37:58 +02:00
|
|
|
LL | intrinsics::atomic_cxchg::<_, { SeqCst }, { SeqCst }>(p, v, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_store` intrinsic: expected basic integer or pointer type, found `[u8; 100]`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:80:5
|
2025-07-30 17:33:17 +08:00
|
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
LL | intrinsics::atomic_store::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2025-07-30 17:33:17 +08:00
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
error[E0511]: invalid monomorphization of `atomic_cxchg` intrinsic: expected basic integer or pointer type, found `bool`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:30:5
|
2025-07-30 17:33:17 +08:00
|
|
|
|
|
2025-08-13 16:53:28 +02:00
|
|
|
LL | intrinsics::atomic_cxchg::<_, { SeqCst }, { SeqCst }>(p, v, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error[E0511]: invalid monomorphization of `atomic_store` intrinsic: expected basic integer or pointer type, found `bool`
|
|
|
|
|
--> $DIR/non-integer-atomic.rs:20:5
|
|
|
|
|
|
|
|
|
|
|
LL | intrinsics::atomic_store::<_, { SeqCst }>(p, v);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2025-07-30 17:33:17 +08:00
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
error: aborting due to 16 previous errors
|
|
|
|
|
|
2019-11-12 12:09:02 +01:00
|
|
|
For more information about this error, try `rustc --explain E0511`.
|