rust/tests/ui/consts/miri_unleashed/abi-mismatch.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
839 B
Plaintext
Raw Normal View History

error[E0080]: could not evaluate static initializer
2022-09-21 06:05:20 -05:00
--> $DIR/abi-mismatch.rs:9:5
|
LL | my_fn();
| ^^^^^^^ calling a function with calling convention C using calling convention Rust
|
note: inside `call_rust_fn`
--> $DIR/abi-mismatch.rs:9:5
|
LL | my_fn();
| ^^^^^^^
note: inside `VAL`
--> $DIR/abi-mismatch.rs:15:18
|
LL | static VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-05-03 07:23:08 -05:00
warning: skipping const checks
|
help: skipping check that does not even have a feature gate
2022-09-21 06:05:20 -05:00
--> $DIR/abi-mismatch.rs:9:5
2020-05-03 07:23:08 -05:00
|
LL | my_fn();
| ^^^^^^^
2020-05-03 07:23:08 -05:00
error: aborting due to previous error; 1 warning emitted
For more information about this error, try `rustc --explain E0080`.