summary refs log tree commit diff
path: root/src/test/ui/consts/issue-28113.rs
blob: e5bd7aafe41e6559c8867fa0b05baaa4e8a42521 (plain)
1
2
3
4
5
6
7
8
#![allow(warnings)]

const X: u8 =
    || -> u8 { 5 }()
    //~^ ERROR calls in constants are limited to constant functions
;

fn main() {}