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
reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
crash23.C
blob
2506869792f3ef9b00acf96ccff8ab3808ff385c
1
// { dg-do assemble }
2
// GROUPS passed old-abort
3
// This used to die in chainon; it shouldn't any more.
4
5
class A
6
{
7
public:
8
class B {
9
public:
10
void f ();
11
void g (int);
12
};
13
void B::f () {}// { dg-error "" } .*
14
void B::g (int val) {}// { dg-error "" } .*
15
};