]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/issue-34928.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / rustdoc / issue-34928.rs
CommitLineData
5bcae85e 1#![crate_name = "foo"]
3157f602 2
5bcae85e 3pub trait Bar {}
a7813a04 4
f2b60f7d 5// @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T)where T: Bar;'
5bcae85e 6pub struct Foo<T>(pub T) where T: Bar;