about summary refs log tree commit diff
path: root/tests/ui/consts/issue-37550.rs
blob: 332e5db7a0f2e1f065893b8ff7be20f89066c5ee (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
#![allow(dead_code)]
#![allow(unused_variables)]

const fn x() {
    let t = true;
    let x = || t;
}

fn main() {}