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-100.cs')
-rwxr-xr-xmcs/tests/test-100.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/mcs/tests/test-100.cs b/mcs/tests/test-100.cs
deleted file mode 100755
index da77cf3cdda..00000000000
--- a/mcs/tests/test-100.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-namespace GLib {
-
- using System;
- using System.Runtime.InteropServices;
-
- public class Object {
- int v;
-
- protected int Raw {
- get {
- return 1;
- }
- set {
- v = value;
- }
- }
-
- [DllImport("bah", CallingConvention=CallingConvention.Cdecl)]
- static extern void g_object_get (int obj);
-
- public void GetProperty ()
- {
- g_object_get (Raw);
- }
-
- static int Main ()
- {
- return 0;
- }
- }
-}