rust/src/test/run-pass/builtin-superkinds-typaram.rs

11 lines
206 B
Rust
Raw Normal View History

2013-08-19 16:15:25 -05:00
// Tests correct implementation of traits with super-builtin-kinds
// using a bounded type parameter.
// pretty-expanded FIXME #23616
2013-08-16 17:21:02 -05:00
trait Foo : Send { }
impl <T: Send> Foo for T { }
pub fn main() { }