summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_link_libraries/depD.cpp
blob: b02c76cf322ab7e419bab78801aa5cc8bf147c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#include "depD.h"

int DepD::foo()
{
  return 0;
}

DepA DepD::getA()
{
  DepA a;
  return a;
}