File tree 2 files changed +8
-0
lines changed
compiler/rustc_passes/src
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -460,6 +460,12 @@ impl<'tcx> CheckAttrVisitor<'tcx> {
460
460
Target :: Fn
461
461
| Target :: Method ( MethodKind :: Trait { body : true } | MethodKind :: Inherent ) => {
462
462
for other_attr in attrs {
463
+ // this covers "sugared doc comments" of the form `/// ...`
464
+ // it does not cover `#[doc = "..."]`, which is handled below
465
+ if other_attr. is_doc_comment ( ) {
466
+ continue ;
467
+ }
468
+
463
469
if !ALLOW_LIST . iter ( ) . any ( |name| other_attr. has_name ( * name) ) {
464
470
self . dcx ( ) . emit_err ( errors:: NakedFunctionIncompatibleAttribute {
465
471
span : other_attr. span ,
Original file line number Diff line number Diff line change @@ -239,6 +239,8 @@ pub unsafe extern "C" fn compatible_target_feature() {
239
239
}
240
240
241
241
#[ doc = "foo bar baz" ]
242
+ /// a doc comment
243
+ // a normal comment
242
244
#[ naked]
243
245
pub unsafe extern "C" fn compatible_doc_attributes ( ) {
244
246
asm ! ( "" , options( noreturn, raw) ) ;
You can’t perform that action at this time.
0 commit comments