summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0611-2.cs
blob: d2c3ad92d6bf649076dc77cdedafe5b00ad96e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0611: Array elements cannot be of type `System.TypedReference'
// Line: 5

public class Sample {
        System.TypedReference[] references {
                get {
                        return null;
                }
        }

		static void Main () {}
}