blob: 4184086f622abaff7f57fb211360c358ccfe15c8 [file] [log] [blame]
#![crate_name = "foo"]
pub trait Bar {}
// @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T) where T: Bar;'
pub struct Foo<T>(pub T) where T: Bar;