You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
583 B
28 lines
583 B
// See http://llvm.org/bugs/show_bug.cgi?id=11468
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
class Action {
|
|
public:
|
|
Action() {}
|
|
void PrintString(const std::string& msg) const {
|
|
fprintf(stderr, "%s\n", msg.c_str());
|
|
}
|
|
void Throw(const char& arg) const {
|
|
PrintString("PrintString called!"); // this line is important
|
|
throw arg;
|
|
}
|
|
};
|
|
|
|
int main() {
|
|
const Action a;
|
|
fprintf(stderr, "&a before = %p\n", &a);
|
|
try {
|
|
a.Throw('c');
|
|
} catch(const char&) {
|
|
fprintf(stderr, "&a in catch = %p\n", &a);
|
|
}
|
|
fprintf(stderr, "&a final = %p\n", &a);
|
|
return 0;
|
|
}
|