about summary refs log tree commit diff
path: root/tests/ui/const-generics/const-generic-default-wont-borrowck.rs
blob: 0d7d87100b7f52179a2e87a72a5bcc2c22cf43d6 (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() {}