rust/tests/ui/attributes/validation-on-associated-items-issue-121537.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
118 B
Rust
Raw Normal View History

trait MyTrait {
#[doc = MyTrait]
//~^ ERROR attribute value must be a literal
fn myfun();
}
fn main() {}