mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 00:03:49 +00:00

The cross-build megatest gets extremely conflict-prone, so start cutting it into smaller pieces.
28 lines
940 B
Plaintext
28 lines
940 B
Plaintext
error[E0570]: "rust-invalid" is not a supported ABI for the current target
|
|
--> $DIR/unsupported-in-impls.rs:15:21
|
|
|
|
|
LL | pub ptr: extern "rust-invalid" fn(),
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error[E0570]: "rust-invalid" is not a supported ABI for the current target
|
|
--> $DIR/unsupported-in-impls.rs:20:16
|
|
|
|
|
LL | pub extern "rust-invalid" fn inherent_fn(self) {
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error[E0570]: "rust-invalid" is not a supported ABI for the current target
|
|
--> $DIR/unsupported-in-impls.rs:27:12
|
|
|
|
|
LL | extern "rust-invalid" fn trait_fn(self);
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error[E0570]: "rust-invalid" is not a supported ABI for the current target
|
|
--> $DIR/unsupported-in-impls.rs:32:12
|
|
|
|
|
LL | extern "rust-invalid" fn trait_fn(self) {
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0570`.
|