1
Fork 0
rust/src/test/ui/lint/lint-unsafe-code.stderr

132 lines
3.5 KiB
Text
Raw Normal View History

error: declaration of a `no_mangle` function
--> $DIR/lint-unsafe-code.rs:26:14
2018-08-08 14:28:26 +02:00
|
LL | #[no_mangle] fn foo() {}
| ^^^^^^^^^^^
2018-08-08 14:28:26 +02:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 08:56:47 -07:00
--> $DIR/lint-unsafe-code.rs:3:9
2018-08-08 14:28:26 +02:00
|
LL | #![deny(unsafe_code)]
| ^^^^^^^^^^^
error: declaration of a `no_mangle` static
--> $DIR/lint-unsafe-code.rs:27:14
|
LL | #[no_mangle] static FOO: u32 = 5;
| ^^^^^^^^^^^^^^^^^^^^
error: declaration of an `unsafe` function
--> $DIR/lint-unsafe-code.rs:29:1
|
LL | unsafe fn baz() {}
| ^^^^^^^^^^^^^^^^^^
2018-08-08 14:28:26 +02:00
error: declaration of an `unsafe` trait
--> $DIR/lint-unsafe-code.rs:30:1
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe trait Foo {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` trait
--> $DIR/lint-unsafe-code.rs:31:1
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe impl Foo for Bar {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: declaration of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:34:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn baz(&self);
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:35:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn provided(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:36:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn provided_override(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:40:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn baz(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:41:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn provided_override(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:60:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn provided_override(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:71:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn provided(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:77:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn provided(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementation of an `unsafe` method
--> $DIR/lint-unsafe-code.rs:81:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe fn baz(&self) {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^
error: usage of an `unsafe` block
--> $DIR/lint-unsafe-code.rs:92:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe {}
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^
error: declaration of a `no_mangle` function
--> $DIR/lint-unsafe-code.rs:20:22
|
LL | #[no_mangle] fn foo() {}
| ^^^^^^^^^^^
...
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)
error: declaration of a `no_mangle` static
--> $DIR/lint-unsafe-code.rs:21:22
|
LL | #[no_mangle] static FOO: u32 = 5;
| ^^^^^^^^^^^^^^^^^^^^
...
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 14:28:26 +02:00
error: usage of an `unsafe` block
--> $DIR/lint-unsafe-code.rs:22:9
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | unsafe {}
2018-08-08 14:28:26 +02: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 14:28:26 +02:00
error: aborting due to 18 previous errors
2018-08-08 14:28:26 +02:00