16 lines
172 B
C++
16 lines
172 B
C++
|
|
#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();
|
|
}
|