mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
295 B
Rust
11 lines
295 B
Rust
// aux-build:suggest-constructor-cycle-error.rs
|
|
//~^ cycle detected when getting the resolver for lowering [E0391]
|
|
|
|
// 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(());
|
|
|
|
fn main() {}
|