summaryrefslogtreecommitdiffhomepage
path: root/test/test_samples/class_methods.cc
blob: ce9a73af6e6db86651013e3398181264c63d1294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define main __ImageStart

class Counter {
  int count;

  void increment() { count += 1; }

  int getCount() { return count; }
};

int main() {
  return 0;
}