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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash73.C
blob
5c3c87dad7a42379a535c2f041bd5407939fe4ae
1
// PR c++/34100
2
// { dg-do compile }
3
4
template<typename T> struct A
5
{
6
typedef typename T::X Y __attribute__((vector_size(8))); // { dg-error "is not a class, struct" }
7
};
8
9
A<int> a;