2021-04-23 17:12:21 -05:00
|
|
|
#![allow(incomplete_features)]
|
2021-08-25 04:21:39 -05:00
|
|
|
#![feature(generic_const_exprs)]
|
2021-04-23 17:12:21 -05:00
|
|
|
#![feature(specialization)]
|
|
|
|
|
|
|
|
pub trait Trait {
|
|
|
|
type Type;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: ?Sized> Trait for T {
|
|
|
|
default type Type = [u8; 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Trait> Trait for *const T {
|
|
|
|
type Type = [u8; std::mem::size_of::<<T as Trait>::Type>()];
|
|
|
|
//~^ ERROR: unconstrained generic constant
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|