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
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
gen-attrs-39-1.C
blob
453fc01a2e994fff433d6636a70421e174c14f42
1
// { dg-do compile { target c++11 } }
2
3
int fragile_block(void) {
4
typedef
5
[[gnu::aligned (16)]] // { dg-warning "ignored" }
6
struct {
7
int i;
8
} XmmUint16;
9
return 0;
10
}