]> git.lizzy.rs Git - rust.git/blob - src/test/ui/builtin-superkinds-simple.rs
Rollup merge of #62360 - Aaron1011:patch-2, r=RalfJung
[rust.git] / src / test / ui / builtin-superkinds-simple.rs
1 // run-pass
2 // Simple test case of implementing a trait with super-builtin-kinds.
3
4 // pretty-expanded FIXME #23616
5
6 trait Foo : Send { }
7
8 impl Foo for isize { }
9
10 pub fn main() { }