New tests.
[mono.git] / mcs / errors / cs0214-12.cs
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context\r
2 // Line: 13\r
3 // Compiler options: -unsafe\r
4 \r
5 class C\r
6 {\r
7         public static unsafe void Write (params int*[] args)\r
8         {\r
9         }\r
10         \r
11         public static void Main ()\r
12         {\r
13                 Write ();\r
14         }\r
15 }\r