w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0262.cs
blob27bd945927a41fa2e890810db34bae0bd37df85b
1 // CS0262: 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 { }