[amd64] Save missing register
[mono.git] / mcs / errors / cs0283-4.cs
1 // CS0283: The type `int?' cannot be declared const
2 // Line: 8
3
4 class C
5 {
6         void Test ()
7         {
8                 const int? ac = null;
9         }
10 }