mirror of
https://git.proxmox.com/git/rustc
synced 2025-11-06 08:39:49 +00:00
7 lines
158 B
Rust
7 lines
158 B
Rust
#![crate_name = "foo"]
|
|
|
|
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;
|