Skip to content

Commit 8b576d5

Browse files
committed
fix attribute validation on associated items in traits
1 parent 8f359be commit 8b576d5

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

compiler/rustc_ast_passes/src/ast_validation.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1519,6 +1519,7 @@ impl<'a> Visitor<'a> for AstValidator<'a> {
15191519
generics,
15201520
body.as_deref(),
15211521
);
1522+
walk_list!(self, visit_attribute, &item.attrs);
15221523
self.visit_fn(kind, item.span, item.id);
15231524
}
15241525
AssocItemKind::Type(_) => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
trait MyTrait {
2+
#[doc = MyTrait]
3+
//~^ ERROR attribute value must be a literal
4+
fn myfun();
5+
}
6+
7+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
error: attribute value must be a literal
2+
--> $DIR/validation-on-associated-items-issue-121537.rs:2:13
3+
|
4+
LL | #[doc = MyTrait]
5+
| ^^^^^^^
6+
7+
error: aborting due to 1 previous error
8+

0 commit comments

Comments
 (0)