]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/init-order/main.cxx
ld64-224.1.tar.gz
[apple/ld64.git] / unit-tests / test-cases / init-order / main.cxx
1 #include <stdio.h>
2
3 class M {
4 public:
5 M() : a(20) {}
6 ~M() {}
7 private:
8 int a;
9 };
10
11
12 M m1;
13 M m2;
14
15 int main()
16 {
17 return 0;
18 }