summary refs log tree commit diff
path: root/tests/ui/resolve/suggest-constructor-cycle-error.rs
blob: c23d6788eefeb243809714093483a7b2dc316e3d (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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(());
//~^ ERROR: cannot initialize a tuple struct which contains private fields [E0423]

fn main() {}