]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34928.rs
Rollup merge of #107169 - albertlarsan68:lock-in-pre-push, r=Mark-Simulacrum
[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;