]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-58856-1.rs
Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC
[rust.git] / src / test / ui / parser / issues / issue-58856-1.rs
1 impl A {
2     //~^ ERROR cannot find type `A` in this scope
3     fn b(self>
4     //~^ ERROR expected one of `)`, `,`, or `:`, found `>`
5     //~| ERROR expected one of `->`, `where`, or `{`, found `>`
6 }
7
8 fn main() {}