mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
cf0251d92c
It currently goes one token too far. Example: line 259 of `tests/ui/abi/compatibility.rs`: ``` test_abi_compatible!(fn_fn, fn(), fn(i32) -> i32); ``` This commit changes the span for the second element from `fn(),` to `fn()`, i.e. removes the extraneous comma.
84 lines
3.2 KiB
Plaintext
84 lines
3.2 KiB
Plaintext
error: items outside of `unsafe extern { }` cannot be declared with `safe` safety qualifier
|
|
--> $DIR/safe-outside-extern.rs:4:1
|
|
|
|
|
LL | safe fn foo() {}
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: items outside of `unsafe extern { }` cannot be declared with `safe` safety qualifier
|
|
--> $DIR/safe-outside-extern.rs:8:1
|
|
|
|
|
LL | safe static FOO: i32 = 1;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: items outside of `unsafe extern { }` cannot be declared with `safe` safety qualifier
|
|
--> $DIR/safe-outside-extern.rs:13:5
|
|
|
|
|
LL | safe fn foo();
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: items outside of `unsafe extern { }` cannot be declared with `safe` safety qualifier
|
|
--> $DIR/safe-outside-extern.rs:19:5
|
|
|
|
|
LL | safe fn foo() {}
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: function pointers cannot be declared with `safe` safety qualifier
|
|
--> $DIR/safe-outside-extern.rs:24:14
|
|
|
|
|
LL | type FnPtr = safe fn(i32, i32) -> i32;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0658]: `unsafe extern {}` blocks and `safe` keyword are experimental
|
|
--> $DIR/safe-outside-extern.rs:4:1
|
|
|
|
|
LL | safe fn foo() {}
|
|
| ^^^^
|
|
|
|
|
= note: see issue #123743 <https://github.com/rust-lang/rust/issues/123743> for more information
|
|
= help: add `#![feature(unsafe_extern_blocks)]` to the crate attributes to enable
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error[E0658]: `unsafe extern {}` blocks and `safe` keyword are experimental
|
|
--> $DIR/safe-outside-extern.rs:8:1
|
|
|
|
|
LL | safe static FOO: i32 = 1;
|
|
| ^^^^
|
|
|
|
|
= note: see issue #123743 <https://github.com/rust-lang/rust/issues/123743> for more information
|
|
= help: add `#![feature(unsafe_extern_blocks)]` to the crate attributes to enable
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error[E0658]: `unsafe extern {}` blocks and `safe` keyword are experimental
|
|
--> $DIR/safe-outside-extern.rs:13:5
|
|
|
|
|
LL | safe fn foo();
|
|
| ^^^^
|
|
|
|
|
= note: see issue #123743 <https://github.com/rust-lang/rust/issues/123743> for more information
|
|
= help: add `#![feature(unsafe_extern_blocks)]` to the crate attributes to enable
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error[E0658]: `unsafe extern {}` blocks and `safe` keyword are experimental
|
|
--> $DIR/safe-outside-extern.rs:19:5
|
|
|
|
|
LL | safe fn foo() {}
|
|
| ^^^^
|
|
|
|
|
= note: see issue #123743 <https://github.com/rust-lang/rust/issues/123743> for more information
|
|
= help: add `#![feature(unsafe_extern_blocks)]` to the crate attributes to enable
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error[E0658]: `unsafe extern {}` blocks and `safe` keyword are experimental
|
|
--> $DIR/safe-outside-extern.rs:24:14
|
|
|
|
|
LL | type FnPtr = safe fn(i32, i32) -> i32;
|
|
| ^^^^
|
|
|
|
|
= note: see issue #123743 <https://github.com/rust-lang/rust/issues/123743> for more information
|
|
= help: add `#![feature(unsafe_extern_blocks)]` to the crate attributes to enable
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error: aborting due to 10 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|