Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
issue-22471.rs
blob: a983fec05c865dd96c0310286f5b0695507c4385 [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
dead_code
)]
#![
allow
(
type_alias_bounds
)]
type
Foo
<
T
>
where T
:
Copy
=
Box
<
T
>;
fn
main
(){}