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
* g++.dg/debug/pr71432.C: Fail on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
offsetof7.C
blob
113a7954726d74ff534169c34375598d22db25df
1
/* { dg-do compile } */
2
3
// From PR28573
4
5
struct A
6
{
7
int operator [] ( int indx ) { return indx; }
8
};
9
10
struct B
11
{
12
A a;
13
};
14
15
int main()
16
{
17
return __builtin_offsetof(B, a[0]); /* { dg-error "cannot apply.*offsetof" } */
18
}