mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
237 B
Rust
11 lines
237 B
Rust
// run-rustfix
|
|
// https://github.com/rust-lang/rust/issues/95616
|
|
|
|
fn buggy_const<const N: usize>(_a: &Option<[u8; N]>, _f: &str) -> &str { //~ERROR [E0106]
|
|
return "";
|
|
}
|
|
|
|
fn main() {
|
|
buggy_const(&Some([69,69,69,69,0]), "test");
|
|
}
|