]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34928.rs
rustdoc: use a newline instead of `<br>` to format code headers
[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;