2019-07-08 10:04:02 -05:00
|
|
|
// 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
|
|
|
|
|
2019-09-01 16:30:19 -05:00
|
|
|
// build-pass
|
2019-07-08 10:04:02 -05:00
|
|
|
|
|
|
|
fn f<F: Fn(xcrate_issue_61711_b::Struct)>(_: F) { }
|
|
|
|
fn main() { }
|