2009-06-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono.git] / mcs / tests / test-616.cs
1 // Compiler options: -nostdlib -t:library -noconfig
2
3 //
4 // Tests compiler mscorlib bootstrap
5 //
6
7 namespace System
8 {
9         public class Object {}
10                 
11         public struct Byte {}
12         public struct Int16 {}
13         public struct Int32 {}
14         public struct Int64 {}
15         public struct Single {}
16         public struct Double{}
17         public struct Char {}
18         public struct Boolean {}
19         public struct SByte {}
20         public struct UInt16 {}
21         public struct UInt32 {}
22         public struct UInt64 {}
23         public struct IntPtr {}
24         public struct UIntPtr {}
25         public struct Decimal { }
26         public class String { }
27         public class Delegate {}
28         public class MulticastDelegate {}
29         public class Array {}
30         public class Exception {}
31         public class Type {}
32         public class ValueType {}
33         public class Enum {}
34         public class Attribute {}
35         public struct Void {}
36         public class ParamArrayAttribute {}
37         public class DefaultMemberAttribute {}
38         public struct RuntimeTypeHandle {}
39         public struct RuntimeFieldHandle {}
40                 
41         public interface IDisposable {}
42 }
43         
44 namespace System.Runtime.InteropServices
45 {
46         public class OutAttribute {}
47 }
48                 
49
50 namespace System.Collections
51 {
52         public interface IEnumerable {}
53         public interface IEnumerator {}
54 }
55
56 namespace System.Reflection
57 {
58         public class DefaultMemberAttribute {}
59 }
60