Content-Length: 12992 | pFad | https://doc.rust-lang.org/std/iter/../convert/../../std/../std/../error_codes/././E0013.html

E0013 - Error codes index

Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error code E0013

Note: this error code is no longer emitted by the compiler

Static and const variables can refer to other const variables. But a const variable cannot refer to a static variable.

Erroneous code example:

#![allow(unused)]
fn main() {
static X: i32 = 42;
const Y: i32 = X;
}

In this example, Y cannot refer to X. To fix this, the value can be extracted as a const and then used:

#![allow(unused)]
fn main() {
const A: i32 = 42;
static X: i32 = A;
const Y: i32 = A;
}








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://doc.rust-lang.org/std/iter/../convert/../../std/../std/../error_codes/././E0013.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy