Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
generics
/
issue-98432.rs
blob: 780c50d6ffa19dbe8b802f970c94a45352be7f4a [
file
] [
log
] [
blame
]
struct
Struct
<
T
>(
T
);
impl
<
T
>
Struct
<
T
>
{
const
CONST
:
fn
()
=
||
{
struct
_Obligation
where T
:;
//~ ERROR can't use generic parameters from outer function
};
}
fn
main
()
{}