about summary refs log tree commit diff
path: root/tests/ui/issues/issue-25180.rs
blob: 339aca037546572cf87cd958dc2b5c49b280e709 (plain)
1
2
3
4
5
6
7
//@ check-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]

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

fn main() {}