blob: 277c96f201bd41a901a0edc5434f632eb5016c42 [file] [log] [blame]
// clang-format off
using namespace System;
#using <ImportLibMixed.dll>
#using <ImportLibPure.dll>
#using <ImportLibSafe.dll>
#using <ImportLibCSharp.dll>
int main()
{
Console::WriteLine("ReferenceImportSafe");
ImportLibMixed::Message();
ImportLibPure::Message();
ImportLibSafe::Message();
ImportLibCSharp::Message();
};