rust/tests/crashes/125655.rs

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

9 lines
127 B
Rust
Raw Normal View History

2024-06-09 00:36:21 +08:00
//@ known-bug: rust-lang/rust#125655
fn main() {
static foo: dyn Fn() -> u32 = || -> u32 {
...
0
};
}