4a1b55aaa5003cefb38cb97519cabd758a78d34e
[mono.git] / mono / tests / metadata-verifier / assembly-with-properties.cs
1 using System;
2 using System.Runtime.InteropServices;
3 using System.Runtime.CompilerServices;
4 using System.ComponentModel;
5
6 public delegate void Del ();
7
8 public class Class0
9 {
10         public int PropA { get; set; }
11         public int PropB { set { int x = value; } }
12         public int PropC { get { return 0; } }
13 }
14
15 public class Class1
16 {
17         public int Prop0 { get; set; }
18         public int Prop1 { get; set; }
19         public int Prop2 { get; set; }
20 }
21
22 public class Class2
23 {
24         public int Prop0 { get; set; }
25         public int Prop1 { get; set; }
26         public int Prop2 { get; set; }
27 }
28 public class Class
29 {
30         public static void Main ()
31         {
32         
33         }
34 }