Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-365.cs
1         public enum LiteralType
2         {
3                 Void,
4         }
5         
6         class C
7         {
8                 public LiteralType LiteralType                                  
9                 {
10                         set
11                         {
12                         }
13                 }
14                 
15                 private LiteralType[] widenSbyte = new LiteralType[]
16                         {
17                                 LiteralType.Void
18                         };
19                         
20                 public static void Main () {}
21         }
22