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