2024-01-05 14:50:52 -06:00
|
|
|
//@ aux-build:suggest-constructor-cycle-error.rs
|
|
|
|
|
|
|
|
// Regression test for https://github.com/rust-lang/rust/issues/119625
|
|
|
|
|
|
|
|
extern crate suggest_constructor_cycle_error as a;
|
|
|
|
|
|
|
|
const CONST_NAME: a::Uuid = a::Uuid(());
|
2024-01-05 14:55:09 -06:00
|
|
|
//~^ ERROR: cannot initialize a tuple struct which contains private fields [E0423]
|
2024-01-05 14:50:52 -06:00
|
|
|
|
|
|
|
fn main() {}
|