[amd64] Save missing register
[mono.git] / mcs / errors / cs0026.cs
1 // CS0026: Keyword `this' is not valid in a static property, static method, or static field initializer
2 // Line: 6
3 class X {
4         static void A ()
5         {
6                 this = null;
7         }
8 }