Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
static_function.rs
blob: 88eb7a0992b8739340c35f0d5c3a3f3f8b8f9259 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
test
(
x
:
i32
)
->
i32
{
return
x
+
1
;
}
fn
main
()
{
let
call_test
=
test
(
1
);
// { dg-warning "unused name" "" { target *-*-* } .-1 }
}