2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0282.cs
blob09187c8cd99d0525cb3cc63f920fe111c4f8b542
1 // cs0282.cs: struct instance field `S.y' found in different declaration from instance field `S.x'
2 // Line: 8
3 // Compiler options: -warn:4 -warnaserror
5 partial struct S {
6 int x;
8 partial struct S {
9 int y;
10 static void Main () {}