summaryrefslogtreecommitdiff
path: root/Tests/ExportImport/Export/testSharedLibDepends.cpp
blob: 962223faf434daf341f34dc16458719ee26ec673 (plain)
1
2
3
4
5
6
7
8
9

#include "testSharedLibDepends.h"

int TestSharedLibDepends::foo()
{
  TestSharedLibRequired req;
  Renamed renamed;
  return req.foo() + renamed.foo();
}