repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce class rtx_reader
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
attrib28.C
blob
2f18d418418d020fc867052b98f6b39671267c48
1
// PR c++/28558
2
// { dg-options "" }
3
4
struct A
5
{
6
A(int) { }
7
};
8
9
int main()
10
{
11
A a = (A __attribute__((unused)))0; // { dg-warning "attribute" }
12
}