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