summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-61711-once-caused-rustc-inf-loop.rs
blob: de7d6a0d80c9e528bde9feb0f38b9872c705600c (plain)
1
2
3
4
5
6
7
8
9
10
11
// Issue 61711: A crate pub re-exporting `crate` was causing an
// infinite loop.

// edition:2018
// aux-build:xcrate-issue-61711-b.rs
// compile-flags:--extern xcrate_issue_61711_b

// build-pass

fn f<F: Fn(xcrate_issue_61711_b::Struct)>(_: F) { }
fn main() { }