blob: f02c4161dc109026c154b9adfd45f03c34907ef1 (
plain)
1
2
3
4
5
6
7
8
|
// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
pub const fn func_name<const X: *const u32>() {}
//~^ ERROR using raw pointers
fn main() {}
|