about summary refs log tree commit diff
path: root/src/test/ui/parser/trait-pub-method.rs
blob: 9675182c1561e0bd9d69e9139c897acc9552a13a (plain)
1
2
3
4
5
6
trait Foo {
    pub fn foo();
    //~^ ERROR expected one of `async`, `const`, `extern`, `fn`, `type`, `unsafe`, or `}`, found
}

fn main() {}