about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_const_exprs/auxiliary/const_evaluatable_lib.rs
blob: 9890e46e44530e5614f60291dd70c94e13a8c391 (plain)
1
2
3
4
5
6
7
8
#![feature(generic_const_exprs)]

pub fn test1<T>() -> [u8; std::mem::size_of::<T>() - 1]
where
    [u8; std::mem::size_of::<T>() - 1]: Sized,
{
    [0; std::mem::size_of::<T>() - 1]
}