blob: 4b952fd64ccfbd2ff425c04ec0eb727ae4ae433b [file] [log] [blame]
//@ known-bug: rust-lang/rust#124857
//@ compile-flags: -Znext-solver=coherence
#![feature(effects)]
#[const_trait]
trait Foo {}
impl const Foo for i32 {}
impl<T> const Foo for T where T: ~const Foo {}