1
Fork 0

fix OOM when ty::Instance is used in query description

This commit is contained in:
Lukas Markeffsky 2024-01-05 21:50:52 +01:00
parent 11035f9f52
commit 274674819c
4 changed files with 45 additions and 4 deletions

View file

@ -0,0 +1,10 @@
// 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() {}