rust/tests/rustdoc-html/tuple-struct-where-clause-34928.rs
2026-01-07 14:23:30 +01:00

8 lines
209 B
Rust

#![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;