rust/tests/ui/coherence/inter-crate-ambiguity-causes-notes.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
311 B
Rust
Raw Normal View History

2023-09-20 19:41:19 +00:00
//@ revisions: old next
2023-12-14 12:11:28 +00:00
//@[next] compile-flags: -Znext-solver
2023-09-20 19:41:19 +00:00
struct S;
impl From<()> for S {
fn from(x: ()) -> Self {
S
}
}
impl<I> From<I> for S
//~^ ERROR conflicting implementations of trait
where
I: Iterator<Item = ()>,
{
fn from(x: I) -> Self {
S
}
}
fn main() {}