summary refs log tree commit diff
path: root/src/test/ui/issues/issue-25180.rs
blob: 297f403c05ee7353d21e8d863735ad3bfc250cb1 (plain)
1
2
3
4
5
6
7
// compile-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]

const x: &'static dyn Fn() = &|| println!("ICE here");

fn main() {}