mirror of https://github.com/rust-lang/rust
16 lines
389 B
Rust
16 lines
389 B
Rust
// check that reservation impls are accounted for in negative reasoning.
|
|
//@ revisions: old next
|
|
//@[next] compile-flags: -Znext-solver
|
|
#![feature(rustc_attrs)]
|
|
|
|
trait MyTrait {}
|
|
#[rustc_reservation_impl="this impl is reserved"]
|
|
impl MyTrait for () {}
|
|
|
|
trait OtherTrait {}
|
|
impl OtherTrait for () {}
|
|
impl<T: MyTrait> OtherTrait for T {}
|
|
//~^ ERROR conflicting implementations
|
|
|
|
fn main() {}
|