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-113.cs')
-rw-r--r--mcs/tests/test-113.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/tests/test-113.cs b/mcs/tests/test-113.cs
deleted file mode 100644
index 67399cf2f27..00000000000
--- a/mcs/tests/test-113.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using System;
-
-class X {
-
- IntPtr Raw;
-
- void g_object_get (IntPtr obj, string name, out string val, IntPtr term)
- {
- }
-
- public void GetProperty (String name, out String val)
- {
- g_object_get (Raw, name, out val, new IntPtr (0));
- }
-
- void g_object_get (IntPtr obj, string name, out bool val, IntPtr term)
- {
- }
-
- public void GetProperty (String name, out bool val)
- {
- g_object_get (Raw, name, out val, new IntPtr (0));
- }
-
- public static int Main ()
- {
- return 0;
- }
-
-}