summary refs log tree commit diff
path: root/tests/ui/inline-const/referencing_local_variables.rs
blob: f9f0fef07f08b15e792377b62d4ebd8e26e83334 (plain)
1
2
3
4
5
6
const fn test_me<T>(a: usize) -> usize {
    const { a }
    //~^ ERROR:  attempt to use a non-constant value in a constant
}

fn main() {}