blob: 2fe54957b3c082f53bcdd690fd3309b5755d083e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// compile-pass
#![allow(dead_code)]
// Test that we can parse where clauses on various forms of tuple
// structs.
// pretty-expanded FIXME #23616
struct Bar<T>(T) where T: Copy;
struct Bleh<T, U>(T, U) where T: Copy, U: Sized;
struct Baz<T> where T: Copy {
field: T
}
fn main() {}
|