2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-392.cs
blob89eed95540f693afc429dfaf17c5015679faad11
1 using System;
3 public class DieSubrangeType
5 public int? UpperBound
7 get;
8 private set;
11 public DieSubrangeType ()
13 UpperBound = 1;
17 class X
19 static int Main ()
21 DieSubrangeType subrange = new DieSubrangeType ();
22 Console.WriteLine (subrange.UpperBound != null);
23 Console.WriteLine ((int) subrange.UpperBound);
24 return (int) subrange.UpperBound - 1;