Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
structs
/
struct-path-alias-bounds.rs
blob: ae6ca8082692bc5ae074f16b6c475a60fb81f9f4 [
file
] [
log
] [
blame
]
// issue #36286
struct
S
<
T
:
Clone
>
{
a
:
T
}
struct
NoClone
;
type
A
=
S
<
NoClone
>;
fn
main
()
{
let
s
=
A
{
a
:
NoClone
};
//~^ ERROR the trait bound `NoClone: std::clone::Clone` is not satisfied
}