Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
issue-79187.rs
blob: a8829bd4e49059f5e4637c04db22948a0fa741f8 [
file
] [
log
] [
blame
] [
edit
]
fn
thing
(
x
:
impl
FnOnce
(&
u32
))
{}
fn
main
()
{
let
f
=
|
_
|
();
thing
(
f
);
//~^ ERROR implementation of `FnOnce` is not general enough
//~| ERROR implementation of `FnOnce` is not general enough
}