[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0131.cs
1 // CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2 // Line: 7
3
4 class X {
5         void A ()
6         {
7                 5 = 4;
8         }
9 }