Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
206 B
C++
Raw Permalink Normal View History

#include "decls.h"
2016-09-15 08:53:33 +00:00
int g() {
return 1;
}
2016-09-15 08:53:33 +00:00
struct1::~struct1() {
int x = g(); // Break1
}
void struct1::f() {}
int main() {
struct1::f();
struct2::f();
struct1 s1;
struct2 s2;
return 0;
}