]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34928.rs
91b67757453d2e788343eb82a15fa1d26313d309
[rust.git] / tests / rustdoc / issue-34928.rs
1 #![crate_name = "foo"]
2
3 pub trait Bar {}
4
5 // @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T)where T: Bar;'
6 pub struct Foo<T>(pub T) where T: Bar;