Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
CMakeCommands
/
target_link_libraries
/
targetB.cpp
blob: a08c79a7e218956af57149c026f64e767174b627 [
file
]
#include
"depD.h"
int
main
(
int
,
char
**)
{
DepD
d
;
DepA
a
=
d
.
getA
();
return
d
.
foo
()
+
a
.
foo
();
}