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

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

17 lines
429 B
Rust
Raw Normal View History

2023-09-20 21:41:19 +02:00
// revisions: old next
2023-12-14 13:11:28 +01:00
//[next] compile-flags: -Znext-solver
2023-09-20 21:41:19 +02: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 {}
struct Cake<X>(X);
impl<T:Sugar> Cake<T> { fn dummy(&self) { } }
//~^ ERROR E0592
impl<U:Sugar> Cake<Box<U>> { fn dummy(&self) { } }
fn main() { }