Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
consts
/
issue-28113.rs
blob: f8131c9f3b717107d5d2530b29490d79adfdc163 [
file
] [
log
] [
blame
]
#![
allow
(
warnings
)]
const
X
:
u8
=
||
->
u8
{
5
}()
//~^ ERROR cannot call non-const closure
;
fn
main
()
{}