rust/tests/ui/coherence/coherence-overlap-issue-23516.rs

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

15 lines
439 B
Rust
Raw Normal View History

2023-09-20 14:41:19 -05:00
//@ revisions: old next
2023-12-14 06:11:28 -06:00
//@[next] compile-flags: -Znext-solver
2023-09-20 14:41:19 -05:00
// 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() { }