brintos

brintos / llvm-project-archived public Read only

0
0
Text · 200 B · 2a03dc1 Raw
17 lines · cpp
1class Foo {2public:3  int a;4  int b;5  virtual int Sum() { return a + b; }6};7 8struct Foo *GetAFoo() {9  return (struct Foo*)0;10}11 12int main() {13  struct Foo *foo = GetAFoo();14  return foo->Sum();15}16 17