blob: fba71f70dd98e2faf4fd907775ad4c8beab47b90 [file] [log] [blame]
//@ check-pass
#![allow(dead_code)]
// Test that we can parse where clauses on various forms of tuple
// structs.
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() {}