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
Add execution tests of ARM EXT intrinsics
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
gen-attrs-18.C
blob
3df13e6440b8c304e588af8b34cac2d1f83823f9
1
// PR c++/17542
2
// Test that we warn when an attribute preceding the class-key is ignored.
3
// { dg-do compile { target c++11 } }
4
5
[[gnu::packed]] struct A // { dg-warning "attribute" }
6
{
7
char c;
8
int x;
9
void f();
10
};