brintos

brintos / llvm-project-archived public Read only

0
0
Text · 206 B · 327d0fb Raw
22 lines · cpp
1#include "decls.h"2 3int g() {4  return 1;5}6 7struct1::~struct1() {8  int x = g(); // Break19}10 11void struct1::f() {}12 13int main() {14  struct1::f();15  struct2::f();16 17  struct1 s1;18  struct2 s2;19 20  return 0;21}22