Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
parameter_usage1.rs
blob: 719f4067c50af52b5bf51f89fa8dbc126bbe5888 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
test
(
a
:
i32
,
b
:
i32
)
->
i32
{
a
+
b
}
fn
main
()
{
let
a
=
test
(
1
,
4
);
// { dg-warning "unused name" "" { target *-*-* } .-1 }
}