rust/src/test/run-pass/builtin-superkinds-typaram.rs
2018-12-25 21:08:33 -07:00

11 lines
206 B
Rust

// 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() { }