// revisions: old next //[next] compile-flags: -Ztrait-solver=next struct S; impl From<()> for S { fn from(x: ()) -> Self { S } } impl From for S //~^ ERROR conflicting implementations of trait where I: Iterator, { fn from(x: I) -> Self { S } } fn main() {}