eol
[mcs.git] / tests / test-100.cs
blobda77cf3cdda2faf007fd7c12c3fd7e484a3d671c
1 namespace GLib {
3 using System;
4 using System.Runtime.InteropServices;
6 public class Object {
7 int v;
9 protected int Raw {
10 get {
11 return 1;
13 set {
14 v = value;
18 [DllImport("bah", CallingConvention=CallingConvention.Cdecl)]
19 static extern void g_object_get (int obj);
21 public void GetProperty ()
23 g_object_get (Raw);
26 static int Main ()
28 return 0;