2005-06-13 Miguel de Icaza <miguel@novell.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
5 class C
6 {
7     public C () {}
8
9     int i = new int ();
10     double d = new double ();
11     char c = new char ();
12     bool b = new bool ();
13     decimal dec2 = new decimal ();
14     object o = new object ();
15             
16     public static void Main ()
17     {
18     }
19 }