Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
silly-order-bug.rs
blob: cdc8b2f8571bfb03ccae3918fe3c8bf1541c8d5a [
file
] [
log
] [
blame
]
#![
feature
(
lang_items
)]
#[
lang
=
"sized"
]
trait
Sized
{}
#[
lang
=
"fn_once"
]
pub
trait
FnOnce
<
Args
>
{
extern
"rust-call"
fn
call_once
(
self
,
args
:
Args
)
->
Self
::
Output
;
type
Output
;
}