rust/tests/ui/impl-trait/auto-trait-coherence.rs

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

30 lines
828 B
Rust
Raw Normal View History

//@ revisions: old next
2023-12-14 12:11:28 +00:00
//@[next] compile-flags: -Znext-solver
// Tests that type alias impls traits do not leak auto-traits for
// the purposes of coherence checking
#![feature(type_alias_impl_trait)]
2020-05-10 10:57:58 +00:00
trait OpaqueTrait {}
impl<T> OpaqueTrait for T {}
type OpaqueType = impl OpaqueTrait;
2020-05-10 10:57:58 +00:00
fn mk_opaque() -> OpaqueType {
()
}
#[derive(Debug)]
struct D<T>(T);
2020-05-10 10:57:58 +00:00
trait AnotherTrait {}
impl<T: Send> AnotherTrait for T {}
// This is in error, because we cannot assume that `OpaqueType: !Send`.
// (We treat opaque types as "foreign types" that could grow more impls
// in the future.)
impl AnotherTrait for D<OpaqueType> {
2024-02-26 09:19:11 +00:00
//[old]~^ ERROR conflicting implementations of trait `AnotherTrait` for type `D<OpaqueType>`
//[next]~^^ ERROR conflicting implementations of trait `AnotherTrait` for type `D<_>`
}
fn main() {}