2003-02-13 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0026.cs
1 // cs0026: use of this is not allowed in static methods
2 // Line: 6
3 class X {
4         static void A ()
5         {
6                 this = null;
7         }
8 }