2020-11-18 22:36:55 -06:00
|
|
|
// revisions: default miropt
|
2021-03-04 07:35:11 -06:00
|
|
|
//[miropt]compile-flags: -Z mir-opt-level=3
|
2020-11-18 22:36:55 -06:00
|
|
|
// ~^ This flag is for #77668, it used to be ICE.
|
|
|
|
|
2018-07-20 08:12:57 -05:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
pub fn bar<P>( // Error won't happen if "bar" is not generic
|
|
|
|
_baz: P,
|
|
|
|
) {
|
|
|
|
hide_foo()();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn hide_foo() -> impl Fn() { // Error won't happen if "iterate" hasn't impl Trait or has generics
|
|
|
|
foo
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() { // Error won't happen if "foo" isn't used in "iterate" or has generics
|
|
|
|
}
|