mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
add test for #116796
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// https://github.com/rust-lang/rust/issues/116796
|
||||
|
||||
struct X<const FN: fn() = { || {} }>;
|
||||
//~^ ERROR using function pointers as const generic parameters is forbidden
|
||||
|
||||
fn main() {}
|
||||
@@ -0,0 +1,10 @@
|
||||
error: using function pointers as const generic parameters is forbidden
|
||||
--> $DIR/default-ty-closure.rs:3:20
|
||||
|
|
||||
LL | struct X<const FN: fn() = { || {} }>;
|
||||
| ^^^^
|
||||
|
|
||||
= note: the only supported types are integers, `bool` and `char`
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
||||
Reference in New Issue
Block a user