Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-113.cs
1 using System;
2
3 class X {
4
5         IntPtr Raw;
6         
7         void g_object_get (IntPtr obj, string name, out string val, IntPtr term)
8         {
9                 val = null;
10         }
11
12         public void GetProperty (String name, out String val)
13         {
14                 g_object_get (Raw, name, out val, new IntPtr (0));
15         }
16
17         void g_object_get (IntPtr obj, string name, out bool val, IntPtr term)
18         {
19                 val = true;
20         }
21         
22         public void GetProperty (String name, out bool val)
23         {
24                 g_object_get (Raw, name, out val, new IntPtr (0));
25         }
26
27         public static int Main ()
28         {
29                 return 0;
30         }
31         
32 }