Skip to content

Commit

Permalink
Auto merge of rust-lang#121545 - gvozdvmozgu:fix-attribute-validation…
Browse files Browse the repository at this point in the history
…-associated-items, r=<try>

fix attribute validation on associated items in traits

rust-lang#121537, fixed attribute validation on associated items in traits
  • Loading branch information
bors committed Feb 24, 2024
2 parents 8f359be + 8b576d5 commit 7ee7645
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions compiler/rustc_ast_passes/src/ast_validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1519,6 +1519,7 @@ impl<'a> Visitor<'a> for AstValidator<'a> {
generics,
body.as_deref(),
);
walk_list!(self, visit_attribute, &item.attrs);
self.visit_fn(kind, item.span, item.id);
}
AssocItemKind::Type(_) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
trait MyTrait {
#[doc = MyTrait]
//~^ ERROR attribute value must be a literal
fn myfun();
}

fn main() {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
error: attribute value must be a literal
--> $DIR/validation-on-associated-items-issue-121537.rs:2:13
|
LL | #[doc = MyTrait]
| ^^^^^^^

error: aborting due to 1 previous error

0 comments on commit 7ee7645

Please sign in to comment.