Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0611-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cbcc3635b2b4f3e3b53c9debfb9446ef7b8928c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0611.cs: Array elements cannot be of type 'System.TypedReference'
// Line: 5

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

		static void Main () {}
}