2019-09-24 10:01:14 -04:00
|
|
|
// Tests that we cannot assume that an opaque type does *not* implement some
|
|
|
|
// other trait
|
2021-03-12 10:53:51 +00:00
|
|
|
// revisions: min_tait full_tait
|
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![cfg_attr(full_tait, feature(type_alias_impl_trait))]
|
2019-09-24 10:01:14 -04:00
|
|
|
|
2020-05-10 11:57:58 +01:00
|
|
|
trait OpaqueTrait {}
|
|
|
|
impl<T> OpaqueTrait for T {}
|
2019-09-24 10:01:14 -04:00
|
|
|
type OpaqueType = impl OpaqueTrait;
|
2020-05-10 11:57:58 +01:00
|
|
|
fn mk_opaque() -> OpaqueType {
|
|
|
|
()
|
|
|
|
}
|
2019-09-24 10:01:14 -04:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct D<T>(T);
|
|
|
|
|
2020-05-10 11:57:58 +01:00
|
|
|
trait AnotherTrait {}
|
|
|
|
impl<T: std::fmt::Debug> AnotherTrait for T {}
|
2019-09-24 10:01:14 -04:00
|
|
|
|
|
|
|
// This is in error, because we cannot assume that `OpaqueType: !Debug`
|
|
|
|
impl AnotherTrait for D<OpaqueType> {
|
2020-05-10 11:57:58 +01:00
|
|
|
//~^ ERROR conflicting implementations of trait `AnotherTrait` for type `D<impl OpaqueTrait>`
|
2019-09-24 10:01:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|