rust/tests/ui/issues/issue-25180.rs

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

8 lines
139 B
Rust
Raw Normal View History

// check-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]
2019-05-28 18:46:13 +00:00
const x: &'static dyn Fn() = &|| println!("ICE here");
fn main() {}