Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
force-inlining
/
shims.rs
blob: 03b7d07cda39e37466a1b7d62627c1c17f763ab7 [
file
] [
log
] [
blame
]
//@ build-pass
#![
allow
(
internal_features
)]
#![
feature
(
rustc_attrs
)]
#[
rustc_force_inline
]
fn
f
()
{}
fn
g
<
T
:
FnOnce
()>(
t
:
T
)
{
t
();
}
fn
main
()
{
g
(
f
);
}