rust/tests/ui/const-generics/invariant.rs

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

33 lines
857 B
Rust
Raw Normal View History

2021-11-04 14:21:36 -05:00
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
use std::marker::PhantomData;
trait SadBee {
const ASSOC: usize;
}
// `fn(&'static ())` is a supertype of `for<'a> fn(&'a ())` while
2021-11-04 14:21:36 -05:00
// we allow two different impls for these types, leading
// to different const eval results.
impl SadBee for for<'a> fn(&'a ()) {
const ASSOC: usize = 0;
}
impl SadBee for fn(&'static ()) {
//~^ WARN conflicting implementations of trait
//~| WARN the behavior may change in a future release
2021-11-04 14:21:36 -05:00
const ASSOC: usize = 100;
}
struct Foo<T: SadBee>([u8; <T as SadBee>::ASSOC], PhantomData<T>)
where
[(); <T as SadBee>::ASSOC]:;
2021-11-04 14:21:36 -05:00
fn covariant(v: &'static Foo<for<'a> fn(&'a ())>) -> &'static Foo<fn(&'static ())> {
v
//~^ ERROR mismatched types
2021-11-04 14:21:36 -05:00
}
fn main() {
let y = covariant(&Foo([], PhantomData));
2021-11-04 14:21:36 -05:00
println!("{:?}", y.0);
}