mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
334 B
Rust
11 lines
334 B
Rust
type A where 'a: 'b + 'c = u8; // OK
|
|
type A where 'a: 'b, = u8; // OK
|
|
type A where 'a: = u8; // OK
|
|
type A where 'a:, = u8; // OK
|
|
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 `;`, `=`, `where`, lifetime, or type, found `,`
|
|
|
|
fn main() {}
|