summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-const_generics-ptr.rs
blob: dc602ba7e6f2138d5e3d0321a80dd0eb384d63ba (plain)
1
2
3
4
5
6
7
8
9
struct ConstFn<const F: fn()>;
//~^ ERROR const generics are unstable
//~^^ ERROR using function pointers as const generic parameters is forbidden

struct ConstPtr<const P: *const u32>;
//~^ ERROR const generics are unstable
//~^^ ERROR using raw pointers as const generic parameters is forbidden

fn main() {}