mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
12 lines
193 B
Rust
12 lines
193 B
Rust
//@ 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 {}
|