[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0103-14.cs
1 // C0103: The name `s' does not exist in the current context
2 // Line: 7
3 // Compiler options: -langversion:experimental
4
5 class Test(string s)
6 {
7         public Test ()
8                 : this (s)
9         {
10         }
11 }