2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-387.cs
blob680a35523cd9fa3b7de174ce983da8739e71f8ef
1 public struct ObjectID {
2 long l;
4 public ObjectID (long l)
6 this.l = l;
9 public static implicit operator long (ObjectID p)
11 return p.l;
14 public static implicit operator ObjectID (long l)
16 return new ObjectID (l);
19 static void Main ()
21 ObjectID x = new ObjectID (0);
22 decimal y = x;