Auto merge of #117176 - bvanjoi:fix-116796, r=jackh726
mark ty::Const::Error when meet unsupport ty for const generic params Close #116796
This commit is contained in:
commit
08cc634f1a
2 changed files with 16 additions and 0 deletions
6
tests/ui/const-generics/default-ty-closure.rs
Normal file
6
tests/ui/const-generics/default-ty-closure.rs
Normal file
|
@ -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() {}
|
10
tests/ui/const-generics/default-ty-closure.stderr
Normal file
10
tests/ui/const-generics/default-ty-closure.stderr
Normal file
|
@ -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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue