[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0133.cs
1 // CS0133: The expression being assigned to `x' must be constant
2 // Line: 6
3 class X {
4         X (int arg)
5         {
6                 const int x = arg;
7         }
8 }