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

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

fn main() {}