fixed project file names, removed svn hiding
[mono.git] / mcs / errors / cs0283-3.cs
1 // CS0283: The type `int*' cannot be declared const\r
2 // Line: 10\r
3 // Compiler options: -unsafe\r
4 \r
5 unsafe class Test\r
6 {\r
7         const int* o = null;\r
8 }