Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0283-3.cs
1 // CS0283: The type `int*' cannot be declared const
2 // Line: 10
3 // Compiler options: -unsafe
4
5 unsafe class Test
6 {
7         const int* o = null;
8 }