Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
resolve
/
unboxed-closure-sugar-nonexistent-trait.rs
blob: 87f9ce097c58903eb3182a0a2fa27ec2c295002a [
file
] [
log
] [
blame
]
fn
f
<
F
:
Nonexist
(
isize
)
->
isize
>(
x
:
F
)
{}
//~^ ERROR cannot find trait `Nonexist`
type
Typedef
=
isize
;
fn
g
<
F
:
Typedef
(
isize
)
->
isize
>(
x
:
F
)
{}
//~^ ERROR expected trait, found type alias `Typedef`
fn
main
()
{}