2016-07-25 12:19:11 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2023-11-20 12:50:25 -06:00
|
|
|
// https://github.com/rust-lang/rust/issues/34928
|
|
|
|
|
2016-07-25 12:19:11 -05:00
|
|
|
pub trait Bar {}
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T) where T: Bar;'
|
2016-07-25 12:19:11 -05:00
|
|
|
pub struct Foo<T>(pub T) where T: Bar;
|