rustc/tests/ui/const-generics/const-generic-default-wont-borrowck.fixed
2024-06-24 14:48:22 +02:00

7 lines
120 B
Plaintext

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