Sign in
◑
Theme
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
tests
/
ui
/
error-codes
/
E0010.rs
blob: 11721efffcb5f061c37607fb21d339962911ed0c [
file
]
#![
allow
(
warnings
)]
const
CON
:
Vec
<
i32
>
=
vec
![
1
,
2
,
3
];
//~ ERROR E0010
//~| ERROR cannot call non-const fn
fn
main
()
{}