about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/attr-misuse.rs
blob: 70dfcbf47d289132d65e6a07c333860cbf45a4a3 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(const_trait_impl)]

#[const_trait]
trait A {
    #[const_trait] //~ ERROR attribute cannot be used on
    fn foo(self);
}

#[const_trait] //~ ERROR attribute cannot be used on
fn main() {}