Sign in
fuchsia
/
third_party
/
rust
/
41601a8c95240cada94c13466a1fea02e5fe87ed
/
.
/
src
/
test
/
ui
/
builtin-superkinds-typaram.rs
blob: f999dfff786eb757b037ed57de5651db9f626ac5 [
file
] [
log
] [
blame
]
// run-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
()
{
}