Merge pull request #3622 from rolfbjarne/remove-stray-file
[mono.git] / mcs / errors / cs0719-2.cs
1 // CS0719: Array elements cannot be of static type `StaticClass'
2 // Line: 12
3
4 using System;
5
6 static class StaticClass
7 {
8 }
9
10 class MainClass
11 {
12         Type Type {
13                 get {
14                         return typeof (StaticClass []);
15                 }
16         }
17 }