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
Fix typo in test case
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
virtual7.C
blob
8b5338efd15d1f985a86d2aa85a3973ccb06bbe9
1
// Build don't link:
2
// Special g++ Options: -fno-rtti
3
// Origin: Anthony Green <green@cygnus.com>
4
5
class _JvObjectPrefix
6
{
7
protected:
8
virtual void finalize (void) = 0;
9
};
10
11
class Object : public _JvObjectPrefix
12
{
13
protected:
14
virtual void finalize (void);
15
};
16
17
Object x;