2006-01-13 John Luke <john.luke@gmail.com>
[mono.git] / mcs / tests / test-349.cs
1 // Compiler options: -optimize+
2
3 // TODO: I will have to investigate how to test that ctor is really empty
4 using System;
5
6 class C
7 {
8     public C () {}
9
10     int i = new int ();
11         int i2 = 1 - 1;
12     double d = new double ();
13     char c = new char ();
14     bool b = new bool ();
15     decimal dec2 = new decimal ();
16         object o = null;
17         ValueType BoolVal = (ValueType)null;
18                 
19         int[] a_i = null;
20         object[] a_o = null;
21         ValueType[] a_v = null;
22         
23     public static void Main ()
24     {
25     }
26 }