blob: 06b5ca5a935caf232b11e686dcb612ba980a0e77 [file] [log] [blame]
//! regression test for <https://github.com/rust-lang/rust/issues/25180>
//@ check-pass
#![allow(dead_code)]
const X: &'static dyn Fn() = &|| println!("ICE here");
fn main() {}