mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
15 lines
192 B
Rust
15 lines
192 B
Rust
// Regression test for #104172
|
|
|
|
const N: usize = {
|
|
struct U;
|
|
!let y = 42;
|
|
//~^ ERROR expected expression, found `let` statement
|
|
3
|
|
};
|
|
|
|
struct S {
|
|
x: [(); N]
|
|
}
|
|
|
|
fn main() {}
|