repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-1.C
blob
60ceb4f076d3593bc4008c4a7afc2d0be386c80e
1
// Test whether -Wunused handles empty classes the same as non-empty.
2
// { dg-do compile }
3
// { dg-options "-Wunused" }
4
5
struct A {};
6
struct B { char c; };
7
8
void foo ()
9
{
10
struct A a0, a1;
11
struct B b0, b1 = { 25 };
12
13
a0 = a1; // { dg-bogus "value computed is not used" }
14
b0 = b1;
15
}