about summary refs log tree commit diff
path: root/tests/ui/impl-trait/issues/issue-68532.rs
blob: ce653ee058f47453ca4c10846503f1fe96f476b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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() {}