summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-impl-self-type.rs
blob: 2dd9b4ef01dbcf620cd6358e5406e9454d796a6a (plain)
1
2
3
4
5
6
7
// Tests that we point at the proper location for an error
// involving the self-type of an impl

trait Foo {}
impl Foo for Option<[u8]> {} //~ ERROR the size for

fn main() {}