summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-102946.rs
blob: c6feca6f32f608ddb947b0f5448ee280ac8d6e4e (plain)
1
2
3
4
5
6
7
impl Error for str::Utf8Error {
    //~^ ERROR cannot find trait `Error` in this scope
    //~| ERROR ambiguous associated type
    fn description(&self)  {}
}

fn main() {}