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
testsuite: arm: Use effective-target for pr68620 and pr78041 tests
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
rtti
/
incomplete1.C
blob
2bf46e079827362a6f468e097e1d784a25233741
1
// PR c++/28109
2
// { dg-do compile }
3
4
#include <typeinfo>
5
6
struct A;
7
8
void foo()
9
{
10
A a; // { dg-error "incomplete type" }
11
typeid (a);
12
}