Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
missing-trait-bounds
/
auxiliary
/
issue-69725.rs
blob: 13606e498ef7def6410991eb7378197788a2d3dc [
file
] [
log
] [
blame
]
#[
derive
(
Clone
)]
pub
struct
Struct
<
A
>(
A
);
impl
<
A
>
Struct
<
A
>
{
pub
fn
new
()
->
Self
{
todo
!()
}
}