mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
22 lines
774 B
Plaintext
22 lines
774 B
Plaintext
error[E0511]: invalid monomorphization of `cttz` intrinsic: expected basic integer type, found `Foo`
|
|
--> $DIR/bad-intrinsic-monomorphization.rs:20:5
|
|
|
|
|
LL | intrinsics::cttz(v)
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0511]: invalid monomorphization of `fadd_fast` intrinsic: expected basic float type, found `Foo`
|
|
--> $DIR/bad-intrinsic-monomorphization.rs:25:5
|
|
|
|
|
LL | intrinsics::fadd_fast(a, b)
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0511]: invalid monomorphization of `simd_add` intrinsic: expected SIMD input type, found non-SIMD `Foo`
|
|
--> $DIR/bad-intrinsic-monomorphization.rs:30:5
|
|
|
|
|
LL | simd_add(a, b)
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0511`.
|