Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
ui
/
structs
/
struct-path-alias-bounds.rs
blob: ae6ca8082692bc5ae074f16b6c475a60fb81f9f4 [
file
]
// 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
}