mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
162 B
Rust
14 lines
162 B
Rust
// 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() {}
|