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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
sizeof3.C
blob
309f1b6e8b128d813329fe6cbccc6355ec30932e
1
// { dg-do assemble }
2
// { dg-options "-pedantic-errors" }
3
// GROUPS passed sizeof
4
// ARM $5.3.2
5
6
class bar;
7
8
int
9
main()
10
{
11
// sizeof may not be applied to an undefined class
12
int k = sizeof (bar);// { dg-error "11:invalid application of .sizeof. to incomplete type" } .*
13
14
return 0;
15
}