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
lint_builtin_anonymous_params = anonymous parameters are deprecated and will be removed in the next edition
53
53
.suggestion = try naming the parameter or explicitly ignoring it
54
54
55
-
lint_builtin_asm_labels = avoid using named labels in inline assembly
56
-
.help = only local labels of the form `<number>:` should be used in inline asm
57
-
.note = see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
58
-
59
55
lint_builtin_clashing_extern_diff_name = `{$this}` redeclares `{$orig}` with a different signature
60
56
.previous_decl_label = `{$orig}` previously declared here
61
57
.mismatch_label = this signature doesn't match the previous declaration
lint_builtin_unsafe_block = usage of an `unsafe` block
165
161
162
+
lint_builtin_unsafe_extern_block = usage of an `unsafe extern` block
163
+
166
164
lint_builtin_unsafe_impl = implementation of an `unsafe` trait
167
165
168
166
lint_builtin_unsafe_trait = declaration of an `unsafe` trait
@@ -403,6 +401,19 @@ lint_incomplete_include =
403
401
404
402
lint_inner_macro_attribute_unstable = inner macro attributes are unstable
405
403
404
+
lint_invalid_asm_label_binary = avoid using labels containing only the digits `0` and `1` in inline assembly
405
+
.label = use a different label that doesn't start with `0` or `1`
406
+
.note = an LLVM bug makes these labels ambiguous with a binary literal number
407
+
.note = see <https://bugs.llvm.org/show_bug.cgi?id=36144> for more information
408
+
409
+
lint_invalid_asm_label_format_arg = avoid using named labels in inline assembly
410
+
.help = only local labels of the form `<number>:` should be used in inline asm
411
+
.note1 = format arguments may expand to a non-numeric value
412
+
.note2 = see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
413
+
lint_invalid_asm_label_named = avoid using named labels in inline assembly
414
+
.help = only local labels of the form `<number>:` should be used in inline asm
415
+
.note = see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
416
+
lint_invalid_asm_label_no_span = the label may be declared in the expansion of a macro
406
417
lint_invalid_crate_type_value = invalid `crate_type` value
0 commit comments