summary refs log tree commit diff
path: root/tests/ui/const-generics/raw-ptr-const-param.rs
blob: 19d18a2f9d2ccee0f71dd4989fa01feb1ba2dcc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ revisions: full min

#![cfg_attr(full, feature(adt_const_params))]
#![cfg_attr(full, allow(incomplete_features))]

struct Const<const P: *const u32>; //~ ERROR: using raw pointers as const generic parameters

fn main() {
    let _: Const<{ 15 as *const _ }> = Const::<{ 10 as *const _ }>;
    //~^ ERROR: mismatched types
    let _: Const<{ 10 as *const _ }> = Const::<{ 10 as *const _ }>;
}