Home | History | Annotate | Download | only in Helpers
      1 #include <stdio.h>
      2 
      3 class C {
      4  public:
      5   C() { value = 42; }
      6   ~C() { }
      7   int value;
      8 };
      9 
     10 C c;
     11 
     12 void AccessC() {
     13   printf("C value: %d\n", c.value);
     14 }
     15 
     16 int main() { return 0; }
     17