]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-22712.rs
Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC
[rust.git] / src / test / ui / parser / issues / issue-22712.rs
1 struct Foo<B> {
2     buffer: B
3 }
4
5 fn bar() {
6     let Foo<Vec<u8>>  //~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `<`
7 }
8
9 fn main() {}