about summary refs log tree commit diff
path: root/tests/ui/const-generics/const-generic-default-wont-borrowck.fixed
blob: da48c62df21010325040abc16b090d60b19ed182 (plain)
1
2
3
4
5
6
//@ run-rustfix
pub struct X<const N: usize = {
    let s: &'static str = ""; s.len() //~ ERROR E0381
}>;

fn main() {}