]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_codes/src/error_codes/E0014.md
Rollup merge of #93556 - dtolnay:trailingcomma, r=cjgillot
[rust.git] / compiler / rustc_error_codes / src / error_codes / E0014.md
1 #### Note: this error code is no longer emitted by the compiler.
2
3 Constants can only be initialized by a constant value or, in a future
4 version of Rust, a call to a const function. This error indicates the use
5 of a path (like a::b, or x) denoting something other than one of these
6 allowed items.
7
8 Erroneous code example:
9
10 ```
11 const FOO: i32 = { let x = 0; x }; // 'x' isn't a constant nor a function!
12 ```
13
14 To avoid it, you have to replace the non-constant value:
15
16 ```
17 const FOO: i32 = { const X : i32 = 0; X };
18 // or even:
19 const FOO2: i32 = { 0 }; // but brackets are useless here
20 ```