OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
eh4.C
1
// Origin: Jean-Marc Bourguet <bourguet@cadence.com>
2
// Build don't link:
3
4
class foo {
5
public:
6
foo() {};
7
void throwMe () {
8
throw *this; // ERROR - cannot be used in throw-expression
9
};
10
virtual void test () = 0;
11
};
12