]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/bounds-lifetime-where.rs
Merge commit '7c21f91b15b7604f818565646b686d90f99d1baf' into clippyup
[rust.git] / src / test / ui / parser / bounds-lifetime-where.rs
index e60cc153e670fbe0103316d217aacc470b2f4937..7ff75233d3a8e019c3afcb3e3bffac7c0250fbe9 100644 (file)
@@ -5,6 +5,6 @@
 type A where 'a: 'b + 'c = u8; // OK
 type A where = u8; // OK
 type A where 'a: 'b + = u8; // OK
-type A where , = u8; //~ ERROR expected one of `;`, `=`, lifetime, or type, found `,`
+type A where , = u8; //~ ERROR expected one of `;`, `=`, `where`, lifetime, or type, found `,`
 
 fn main() {}