2021-11-04 19:21:36 +00: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
|
|
|
|
// 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 ()) {
|
|
|
|
//~^ WARNING conflicting implementations of trait
|
|
|
|
//~| WARNING this was previously accepted
|
|
|
|
const ASSOC: usize = 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo<T: SadBee>([u8; <T as SadBee>::ASSOC], PhantomData<T>)
|
|
|
|
where
|
|
|
|
[(); <T as SadBee>::ASSOC]: ;
|
|
|
|
|
|
|
|
fn covariant(
|
|
|
|
v: &'static Foo<for<'a> fn(&'a ())>
|
|
|
|
) -> &'static Foo<fn(&'static ())> {
|
2022-07-27 07:27:52 +00:00
|
|
|
v
|
2022-11-15 22:53:30 +00:00
|
|
|
//~^ ERROR mismatched types
|
2021-11-04 19:21:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2022-11-15 22:53:30 +00:00
|
|
|
let y = covariant(&Foo([], PhantomData));
|
2021-11-04 19:21:36 +00:00
|
|
|
println!("{:?}", y.0);
|
|
|
|
}
|