Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
tuple_struct1.rs
blob: 7633055ba6ea98d399ffe7d3a4ec7d9da7e21567 [
file
] [
log
] [
blame
]
#![
feature
(
no_core
)]
#![
no_core
]
struct
Foo
(
i32
,
i32
,
bool
);
fn
main
()
{
let
a
=
Foo
(
1
,
2
,
true
);
// { dg-warning "unused name" "" { target *-*-* } .-1 }
}