Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
d029bd3bbae27727243da8773780a33c9bdac020
/
.
/
crates
/
linkme
/
src
/
private.rs
blob: 508ef4f4823cf8310e885000d57a2d97eca3574d [
file
] [
log
] [
blame
]
pub
use
core
::
assert
;
pub
use
core
::
mem
;
pub
use
core
::
primitive
::
usize
;
pub
trait
Slice
{
type
Element
;
}
impl
<
T
>
Slice
for
[
T
]
{
type
Element
=
T
;
}
pub
enum
Void
{}
pub
fn
value
<
T
>()
->
T
{
panic
!()
}