rust/tests/ui/builtin-superkinds/builtin-superkinds-typaram.rs
2023-01-11 09:32:08 +00:00

12 lines
218 B
Rust

// run-pass
// Tests correct implementation of traits with super-builtin-kinds
// using a bounded type parameter.
// pretty-expanded FIXME #23616
trait Foo : Send { }
impl <T: Send> Foo for T { }
pub fn main() { }