blob: 0d7d87100b7f52179a2e87a72a5bcc2c22cf43d6 [file] [log] [blame] [edit]
//@ run-rustfix
pub struct X<const N: usize = {
let s: &'static str; s.len() //~ ERROR E0381
}>;
fn main() {}