summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/issues/issue-67945-4.rs
blob: 9a27bf09f881460dab30deda158abd112a759c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Regression test for
// https://github.com/rust-lang/rust/issues/67945#issuecomment-572617285

// revisions: full min
#![cfg_attr(full, feature(generic_const_exprs))]
#![cfg_attr(full, allow(incomplete_features))]

struct Bug<S> { //[min]~ ERROR: parameter `S` is never used
    A: [(); { //[full]~ ERROR: overly complex generic constant
        let x: Option<Box<S>> = None;
        //[min]~^ ERROR: generic parameters may not be used in const operations
        0
    }],
}

fn main() {}