about summary refs log tree commit diff
path: root/tests/ui/attributes/validation-on-associated-items-issue-121537.rs
blob: 60e5a21eec7746ed57171739706ec1a79533c4c6 (plain)
1
2
3
4
5
6
7
trait MyTrait {
    #[doc = MyTrait]
    //~^ ERROR attribute value must be a literal
    fn myfun();
}

fn main() {}