Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
next-solver
/
select-alias-bound-as-param.rs
blob: fd40ef1f872f355a9f2150c9db24d2cd8116c9ec [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ compile-flags: -Znext-solver
pub
(
crate
)
fn
y
()
->
impl
FnMut
()
{
||
{}
}
pub
(
crate
)
fn
x
(
a
:
(),
b
:
())
{
let
x
=
();
y
()()
}
fn
main
()
{}