2021-11-04 14:21:36 -05:00
|
|
|
#![feature(generic_const_exprs)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
|
|
|
|
trait SadBee {
|
|
|
|
const ASSOC: usize;
|
|
|
|
}
|
2024-09-06 20:23:28 -05:00
|
|
|
// `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 ()) {
|
2024-02-06 12:22:13 -06:00
|
|
|
//~^ 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
|
2024-02-06 12:22:13 -06:00
|
|
|
[(); <T as SadBee>::ASSOC]:;
|
2021-11-04 14:21:36 -05:00
|
|
|
|
2024-02-06 12:22:13 -06:00
|
|
|
fn covariant(v: &'static Foo<for<'a> fn(&'a ())>) -> &'static Foo<fn(&'static ())> {
|
2022-07-27 02:27:52 -05:00
|
|
|
v
|
2022-11-15 16:53:30 -06:00
|
|
|
//~^ ERROR mismatched types
|
2021-11-04 14:21:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2022-11-15 16:53:30 -06:00
|
|
|
let y = covariant(&Foo([], PhantomData));
|
2021-11-04 14:21:36 -05:00
|
|
|
println!("{:?}", y.0);
|
|
|
|
}
|