Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
builtin-superkinds
/
builtin-superkinds-typaram.rs
blob: 15b867dd5e005731c0bfb13009b46e9a41624e1f [
file
] [
log
] [
blame
]
//@ check-pass
// Tests correct implementation of traits with super-builtin-kinds
// using a bounded type parameter.
//@ pretty-expanded FIXME #23616
trait
Foo
:
Send
{
}
impl
<
T
:
Send
>
Foo
for
T
{
}
pub
fn
main
()
{
}