Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
d91e86e963128ebd9e0baee42d1504670dab1565
/
.
/
tests
/
ui
/
builtin-superkinds
/
builtin-superkinds-simple2.rs
blob: 510ef4c158e455f048fb4537bb500e7c7e4c5ad1 [
file
] [
log
] [
blame
]
//@ check-pass
// Simple test case of implementing a trait with super-builtin-kinds.
trait
Foo
:
Send
{
}
impl
Foo
for
isize
{
}
pub
fn
main
()
{
}