rust/tests/ui/parser/issues/issue-58856-1.rs

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

9 lines
213 B
Rust
Raw Normal View History

impl A {
//~^ ERROR cannot find type `A` in this scope
2019-03-02 00:35:21 -06:00
fn b(self>
//~^ ERROR expected one of `)`, `,`, or `:`, found `>`
//~| ERROR expected one of `->`, `where`, or `{`, found `>`
}
fn main() {}