summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0719-2.cs
blob: a345c6bfa48c6fad30a019c12bc0a6cf2cb1e589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0719: Array elements cannot be of static type `StaticClass'
// Line: 12

using System;

static class StaticClass
{
}

class MainClass
{
	Type Type {
		get {
			return typeof (StaticClass []);
		}
	}
}