summary refs log tree commit diff
path: root/src/test/ui/const-generics/const-generic-default-wont-borrowck.rs
blob: bb5a2f1766f1b806a8fe1d325e123226baa33091 (plain)
1
2
3
4
5
6
struct X<const N: usize = {
    let s: &'static str; s.len()
    //~^ ERROR borrow of possibly-uninitialized variable
}>;

fn main() {}