rust/tests/ui/inline-const/referencing_local_variables.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
140 B
Rust
Raw Normal View History

const fn test_me<T>(a: usize) -> usize {
const { a }
//~^ ERROR: attempt to use a non-constant value in a constant
}
fn main() {}