blob: 01a7af0aee40e872bdd238aa0d15f4203f4a3e86 [file] [log] [blame]
// check-pass
pub struct A<'a>(&'a ());
impl<'a> A<'a> {
const N: usize = 68;
pub fn foo(&self) {
let _b = [0; Self::N];
}
}
fn main() {}