]> git.lizzy.rs Git - rust.git/blob - tests/ui/builtin-superkinds/builtin-superkinds-simple2.rs
Point at impl self type for impl wf obligations
[rust.git] / tests / ui / builtin-superkinds / builtin-superkinds-simple2.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() { }