Merge pull request #3565 from vargaz/no-free-imt-thunks
[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 }