blob: 53ecd422eb8dd16034514da33a3b742c47708742 [file] [log] [blame]
// 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();
};