You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
53
53
54
+
error: declaration of a function with `link_section`
= note: the program's behavior with overridden link sections on items is unpredictable and Rust cannot provide guarantees when you manually override them
61
+
62
+
error: declaration of a static with `link_section`
= note: the program's behavior with overridden link sections on items is unpredictable and Rust cannot provide guarantees when you manually override them
69
+
54
70
error: declaration of a method with `export_name`
55
-
--> $DIR/lint-unsafe-code.rs:54:5
71
+
--> $DIR/lint-unsafe-code.rs:57:5
56
72
|
57
73
LL | #[export_name = "bar"] fn bar() {}
58
74
| ^^^^^^^^^^^^^^^^^^^^^^
59
75
|
60
76
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
61
77
62
78
error: declaration of a method with `export_name`
63
-
--> $DIR/lint-unsafe-code.rs:58:5
79
+
--> $DIR/lint-unsafe-code.rs:61:5
64
80
|
65
81
LL | #[export_name = "bar"] fn foo() {}
66
82
| ^^^^^^^^^^^^^^^^^^^^^^
67
83
|
68
84
= note: the linker's behavior with multiple libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when you manually override them
69
85
70
86
error: declaration of an `unsafe` function
71
-
--> $DIR/lint-unsafe-code.rs:61:1
87
+
--> $DIR/lint-unsafe-code.rs:64:1
72
88
|
73
89
LL | unsafe fn baz() {}
74
90
| ^^^^^^^^^^^^^^^^^^
75
91
76
92
error: declaration of an `unsafe` trait
77
-
--> $DIR/lint-unsafe-code.rs:62:1
93
+
--> $DIR/lint-unsafe-code.rs:65:1
78
94
|
79
95
LL | unsafe trait Foo {}
80
96
| ^^^^^^^^^^^^^^^^^^^
81
97
82
98
error: implementation of an `unsafe` trait
83
-
--> $DIR/lint-unsafe-code.rs:63:1
99
+
--> $DIR/lint-unsafe-code.rs:66:1
84
100
|
85
101
LL | unsafe impl Foo for Bar {}
86
102
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
87
103
88
104
error: declaration of an `unsafe` method
89
-
--> $DIR/lint-unsafe-code.rs:66:5
105
+
--> $DIR/lint-unsafe-code.rs:69:5
90
106
|
91
107
LL | unsafe fn baz(&self);
92
108
| ^^^^^^^^^^^^^^^^^^^^^
93
109
94
110
error: implementation of an `unsafe` method
95
-
--> $DIR/lint-unsafe-code.rs:67:5
111
+
--> $DIR/lint-unsafe-code.rs:70:5
96
112
|
97
113
LL | unsafe fn provided(&self) {}
98
114
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
99
115
100
116
error: implementation of an `unsafe` method
101
-
--> $DIR/lint-unsafe-code.rs:68:5
117
+
--> $DIR/lint-unsafe-code.rs:71:5
102
118
|
103
119
LL | unsafe fn provided_override(&self) {}
104
120
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
105
121
106
122
error: implementation of an `unsafe` method
107
-
--> $DIR/lint-unsafe-code.rs:72:5
123
+
--> $DIR/lint-unsafe-code.rs:75:5
108
124
|
109
125
LL | unsafe fn baz(&self) {}
110
126
| ^^^^^^^^^^^^^^^^^^^^^^^
111
127
112
128
error: implementation of an `unsafe` method
113
-
--> $DIR/lint-unsafe-code.rs:73:5
129
+
--> $DIR/lint-unsafe-code.rs:76:5
114
130
|
115
131
LL | unsafe fn provided_override(&self) {}
116
132
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
117
133
118
134
error: implementation of an `unsafe` method
119
-
--> $DIR/lint-unsafe-code.rs:92:5
135
+
--> $DIR/lint-unsafe-code.rs:95:5
120
136
|
121
137
LL | unsafe fn provided_override(&self) {}
122
138
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
123
139
124
140
error: implementation of an `unsafe` method
125
-
--> $DIR/lint-unsafe-code.rs:103:5
141
+
--> $DIR/lint-unsafe-code.rs:106:5
126
142
|
127
143
LL | unsafe fn provided(&self) {}
128
144
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
129
145
130
146
error: implementation of an `unsafe` method
131
-
--> $DIR/lint-unsafe-code.rs:109:5
147
+
--> $DIR/lint-unsafe-code.rs:112:5
132
148
|
133
149
LL | unsafe fn provided(&self) {}
134
150
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
135
151
136
152
error: implementation of an `unsafe` method
137
-
--> $DIR/lint-unsafe-code.rs:113:5
153
+
--> $DIR/lint-unsafe-code.rs:116:5
138
154
|
139
155
LL | unsafe fn baz(&self) {}
140
156
| ^^^^^^^^^^^^^^^^^^^^^^^
141
157
142
158
error: usage of an `unsafe` block
143
-
--> $DIR/lint-unsafe-code.rs:124:5
159
+
--> $DIR/lint-unsafe-code.rs:127:5
144
160
|
145
161
LL | unsafe {}
146
162
| ^^^^^^^^^
@@ -204,5 +220,5 @@ LL | unsafe_in_macro!()
204
220
|
205
221
= note: this error originates in the macro `unsafe_in_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
0 commit comments