Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
rustdoc
/
tuple-struct-where-clause-34928.rs
blob: 909b91468931b848407324ece8726ee43d09f28e [
file
] [
log
] [
blame
]
#![
crate_name
=
"foo"
]
// https://github.com/rust-lang/rust/issues/34928
pub
trait
Bar
{}
// @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T) where T: Bar;'
pub
struct
Foo
<
T
>(
pub
T
)
where T
:
Bar
;