rust/src/test/ui/const-generics/raw-ptr-const-param.rs

12 lines
363 B
Rust
Raw Normal View History

// revisions: full min
#![cfg_attr(full, feature(const_param_types))]
#![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 _ }>;
let _: Const<{ 10 as *const _ }> = Const::<{ 10 as *const _ }>;
}