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 Permalink Normal View History

2023-12-23 11:45:02 -06: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() {}