]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-impl-self-type.rs
Rollup merge of #87185 - waterlens:issue-86499-fix, r=Mark-Simulacrum
[rust.git] / src / test / 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() {}