* ResXResourceReader.cs (load_data): Make exception more informative.
[mono.git] / mcs / errors / cs0611-2.cs
1 // cs0611.cs: Array elements cannot be of type 'System.TypedReference'\r
2 // Line: 5\r
3 \r
4 public class Sample {\r
5         System.TypedReference[] references {\r
6                 get {\r
7                         return null;\r
8                 }\r
9         }\r
10 \r
11                 static void Main () {}\r
12 }\r
13 \r
14 \r
15 \r