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

10 lines
168 B
Rust

// Simple test case of implementing a trait with super-builtin-kinds.
// pretty-expanded FIXME #23616
trait Foo : Send { }
impl Foo for isize { }
pub fn main() { }