rust/src/test/ui/lint/lint-unsafe-code.stderr

177 lines
5.9 KiB
Plaintext
Raw Normal View History

error: declaration of a `no_mangle` function
--> $DIR/lint-unsafe-code.rs:31:17
2018-08-08 12:28:26 +00:00
|
LL | #[no_mangle] fn foo() {}
| ^^^
2018-08-08 12:28:26 +00:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 15:56:47 +00:00
--> $DIR/lint-unsafe-code.rs:3:9
2018-08-08 12:28:26 +00:00
|
LL | #![deny(unsafe_code)]
| ^^^^^^^^^^^
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
2018-08-08 12:28:26 +00:00
error: declaration of a `no_mangle` static
--> $DIR/lint-unsafe-code.rs:32:21
|
LL | #[no_mangle] static FOO: u32 = 5;
| ^^^
|
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
error: declaration of a function with `export_name`
--> $DIR/lint-unsafe-code.rs:34:27
|
LL | #[export_name = "bar"] fn bar() {}
| ^^^
|
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
error: declaration of a static with `export_name`
--> $DIR/lint-unsafe-code.rs:35:31
|
LL | #[export_name = "BAR"] static BAR: u32 = 5;
| ^^^
|
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
error: declaration of an `unsafe` function
--> $DIR/lint-unsafe-code.rs:37:1
|
LL | unsafe fn baz() {}
| ^^^^^^^^^^^^^^^^^^
2018-08-08 12:28:26 +00:00
error: declaration of an `unsafe` trait
--> $DIR/lint-unsafe-code.rs:38:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe trait Foo {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` trait
--> $DIR/lint-unsafe-code.rs:39:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe impl Foo for Bar {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: declaration of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:42:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn baz(&self);
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:43:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn provided(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:44:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn provided_override(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:48:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn baz(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:49:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn provided_override(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:68:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn provided_override(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:79:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn provided(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:85:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn provided(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:89:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe fn baz(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^
error: usage of an `unsafe` block
--> $DIR/lint-unsafe-code.rs:100:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^
error: declaration of a `no_mangle` function
--> $DIR/lint-unsafe-code.rs:21:25
|
LL | #[no_mangle] fn foo() {}
| ^^^
...
LL | unsafe_in_macro!()
| ------------------ in this macro invocation
|
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: declaration of a `no_mangle` static
--> $DIR/lint-unsafe-code.rs:22:29
|
LL | #[no_mangle] static FOO: u32 = 5;
| ^^^
...
LL | unsafe_in_macro!()
| ------------------ in this macro invocation
|
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: declaration of a function with `export_name`
--> $DIR/lint-unsafe-code.rs:23:35
|
LL | #[export_name = "bar"] fn bar() {}
| ^^^
...
LL | unsafe_in_macro!()
| ------------------ in this macro invocation
|
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: declaration of a static with `export_name`
--> $DIR/lint-unsafe-code.rs:25:39
|
LL | #[export_name = "BAR"] static BAR: u32 = 5;
| ^^^
...
LL | unsafe_in_macro!()
| ------------------ in this macro invocation
|
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: usage of an `unsafe` block
--> $DIR/lint-unsafe-code.rs:27:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^
...
LL | unsafe_in_macro!()
| ------------------ in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: aborting due to 22 previous errors
2018-08-08 12:28:26 +00:00