STR
// OK
struct Bar<T> where T: Copy {
inner: T,
}
// Is this the right syntax?
struct Foo<T>(T) where T: Copy; //~ error: expected `;`, found `where`
fn main() {}
Version
rustc 0.12.0-dev (10fc25a39 2014-10-09 16:04:25 -0500)
(PR 17669 on top of b08ecf7)