repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
diagnostic
/
pr13981.C
blob
1b8a028d948d790eac20bcf8eb20854c6f3af606
1
// PR c++/13981
2
3
struct A {};
4
struct B; // { dg-message "is incomplete" }
5
6
void func( A *a );
7
8
int main()
9
{
10
B *b = 0;
11
func(b); // { dg-error "cannot convert" }
12
}