rust/tests/crashes/119830.rs

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

12 lines
193 B
Rust
Raw Normal View History

//@ known-bug: #119830
#![feature(effects)]
#![feature(min_specialization)]
trait Specialize {}
trait Foo {}
impl<T> const Foo for T {}
impl<T> const Foo for T where T: const Specialize {}