mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +00:00
7 lines
120 B
Plaintext
7 lines
120 B
Plaintext
//@ run-rustfix
|
|
pub struct X<const N: usize = {
|
|
let s: &'static str = ""; s.len() //~ ERROR E0381
|
|
}>;
|
|
|
|
fn main() {}
|