blob: c136050b24664c4f02531ab2414f4b2b07d66cc1 [file] [edit]
//@ revisions: bpass1 bpass2
//@ ignore-backends: gcc
#![crate_type = "rlib"]
use std::fmt::Debug;
// MCVE kindly provided by Nilstrieb at
// https://github.com/rust-lang/rust/issues/108481#issuecomment-1493080185
#[derive(Debug)]
pub struct ConstGeneric<const CHUNK_SIZE: usize> {
_p: [(); CHUNK_SIZE],
}
#[cfg(bpass1)]
impl<const CHUNK_SIZE: usize> ConstGeneric<CHUNK_SIZE> {}