]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-102946.rs
Rollup merge of #106779 - RReverser:patch-2, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / issue-102946.rs
1 impl Error for str::Utf8Error {
2     //~^ ERROR cannot find trait `Error` in this scope
3     //~| ERROR ambiguous associated type
4     fn description(&self)  {}
5 }
6
7 fn main() {}