Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git] / mcs / errors / cs0282.cs
blob0316154e4b40bf0647ac624102dd030c53bf8092
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
5 partial struct S {
6 int x;
8 partial struct S {
9 int y;
10 static void Main () {}