mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
15 lines
439 B
Rust
15 lines
439 B
Rust
//@ revisions: old next
|
|
//@[next] compile-flags: -Znext-solver
|
|
|
|
// Tests that we consider `Box<U>: !Sugar` to be ambiguous, even
|
|
// though we see no impl of `Sugar` for `Box`. Therefore, an overlap
|
|
// error is reported for the following pair of impls (#23516).
|
|
|
|
pub trait Sugar { fn dummy(&self) { } }
|
|
pub trait Sweet { fn dummy(&self) { } }
|
|
impl<T:Sugar> Sweet for T { }
|
|
impl<U:Sugar> Sweet for Box<U> { }
|
|
//~^ ERROR E0119
|
|
|
|
fn main() { }
|