[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0282.cs
1 // CS0282: struct instance field `S.y' found in different declaration from instance field `S.x'
2 // Line: 8
3 // Compiler options: -warn:4 -warnaserror
4
5 partial struct S {
6         int x;
7 }
8 partial struct S {
9         int y;
10         static void Main () {}
11 }