// build-pass// compile-flags: -Ztrait-solver=next// Tests that the specializing impl `<() as Foo>` holds during codegen.#![feature(min_specialization)]traitFoo{fnbar();}impl<T>FooforT{defaultfnbar(){}}implFoofor(){fnbar(){}}fnmain(){<()asFoo>::bar();}