Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-18919.rs
blob: f06771e9ea59d543171758f64a28a54c6be1f059 [
file
] [
log
] [
blame
] [
edit
]
type
FuncType
<
'f> = dyn Fn(&isize) -> isize + '
f
;
fn
ho_func
(
f
:
Option
<
FuncType
>)
{
//~^ ERROR the size for values of type
}
enum
Option
<
T
>
{
Some
(
T
),
None
,
}
fn
main
()
{}