]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-34928.rs
Merge commit '70c0f90453701e7d6d9b99aaa1fc6a765937b736' into clippyup
[rust.git] / src / test / 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;