]> git.lizzy.rs Git - rust.git/blob - tests/ui/wf/wf-impl-self-type.rs
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / ui / wf / wf-impl-self-type.rs
1 // Tests that we point at the proper location for an error
2 // involving the self-type of an impl
3
4 trait Foo {}
5 impl Foo for Option<[u8]> {} //~ ERROR the size for
6
7 fn main() {}