Files
rust/tests/ui/parallel-rustc/cycle_crash-issue-135870.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
228 B
Rust
Raw Normal View History

// Test for #135870, which causes a deadlock bug
//
//@ compile-flags: -Z threads=2
//@ compare-output-by-lines
const FOO: usize = FOO; //~ ERROR cycle detected when simplifying constant for the type system `FOO`
fn main() {}