mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 01:10:36 +00:00
11 lines
189 B
Rust
11 lines
189 B
Rust
//@ check-pass
|
|
// Tests correct implementation of traits with super-builtin-kinds
|
|
// using a bounded type parameter.
|
|
|
|
|
|
trait Foo : Send { }
|
|
|
|
impl <T: Send> Foo for T { }
|
|
|
|
pub fn main() { }
|