os-rust/tests/ui/const-generics/default-ty-closure.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
180 B
Rust
Raw Normal View History

2023-12-24 01:45:02 +08:00
// 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() {}