]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-34928.rs
Rollup merge of #93136 - pietroalbini:pa-1.58.1-relnotes-master, r=pietroalbini
[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;