blob: 11efb3d5fc988937319b196e9f1c9807e7a61723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "bar.h"
#include "depG.h"
#include "foo.h"
#ifndef TEST_DEF
# error Expected TEST_DEF definition
#endif
int main(int, char**)
{
DepG g;
return g.foo();
}
|