[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1525-18.cs
1 // CS1518: Unexpected symbol `ew'
2 // Line: 6
3
4 class TestClass
5 {
6         object changes = n ew object ();
7         
8         public int IndentLevel {
9                 get {
10                         return 0;
11                 }
12                 set {
13                 }
14         }
15 }