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
/
offsetof2.C
blob
da888f7a59eb17c7148a17bac303f78f3208095e
1
// PR c++/49085
2
3
template <class T>
4
struct A // { dg-error "declaration" }
5
{
6
int i, j;
7
int ar[__builtin_offsetof(A,j)]; // { dg-error "incomplete type" }
8
};
9
10
A<int> a;