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