2025-08-20 14:02:57 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/64792
|
2019-10-07 22:06:14 +01:00
|
|
|
struct X {}
|
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
const Y: X = X("ö"); //~ ERROR expected function, tuple struct or tuple variant, found struct `X`
|
2019-10-07 22:06:14 +01:00
|
|
|
|
|
|
|
|
fn main() {}
|