Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0262.cs
blob7d2751fe0a118ff276dc524919e6f4bd66901d3f
1 // cs0262.cs: Partial declarations of `Foo' have conflicting accessibility modifiers
2 // Line: 6
3 public partial class Foo
4 { }
6 internal partial class Foo
7 { }
9 class X
11 static void Main ()
12 { }