summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/CSharpReferenceImport/ReferenceImportMixed.cxx
blob: 53ecd422eb8dd16034514da33a3b742c47708742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// clang-format off

using namespace System;

#using <ImportLibMixed.dll>
#using <ImportLibPure.dll>
#using <ImportLibSafe.dll>
#using <ImportLibCSharp.dll>

#include "ImportLibNative.h"

int main()
{
  Console::WriteLine("ReferenceImportMixed");
  ImportLibNative::Message();
  ImportLibMixed::Message();
  ImportLibPure::Message();
  ImportLibSafe::Message();
  ImportLibCSharp::Message();
};