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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr81812.C
blob
b5c621d2beb24f5130826b787eabfd52ea993a43
1
// { dg-xfail-if "PR108277" { arm_thumb1 } }
2
3
struct Error {
4
virtual void error(... ) const;
5
};
6
7
struct ChildNode : virtual Error {
8
void error(... ) const;
9
};
10
11
void ext(const char*, ...);
12
13
void ChildNode::error(...) const
14
{
15
#ifdef FIX
16
ext("");
17
#endif
18
}