]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-impl-self-type.rs
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[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() {}