mirror of
https://github.com/reactos/CMake.git
synced 2025-02-12 06:51:00 +00:00
11 lines
107 B
C++
11 lines
107 B
C++
|
|
#include "depD.h"
|
|
|
|
int main(int, char **)
|
|
{
|
|
DepD d;
|
|
DepA a = d.getA();
|
|
|
|
return d.foo() + a.foo();
|
|
}
|