Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn ty_param<T>() -> [u8; std::mem::size_of::<T>()] {
//~^ ERROR generic parameters may not be used in const operations
todo!()
}
fn const_param<const N: usize>() -> [u8; N + 1] {
fn main() {}