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