Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/tests/test-50.cs')
-rw-r--r--mcs/tests/test-50.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mcs/tests/test-50.cs b/mcs/tests/test-50.cs
deleted file mode 100644
index 84636e887ff..00000000000
--- a/mcs/tests/test-50.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-
-public class Blah {
-
- [DllImport ("user32", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Auto)]
- public static extern int MessageBox (int hWnd, string pText, string pCaption, int uType);
-
- public static int Main ()
- {
- MessageBox (0, "Hello from Mono !", "PInvoke Test", 0);
-
- return 0;
- }
-}