[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0053-3.cs
1 // CS0053: Inconsistent accessibility: property type `MonoTests.System.ComponentModel.PropertyDescriptorTests.MissingConverterType_test.NestedClass' is less accessible than property `MonoTests.System.ComponentModel.PropertyDescriptorTests.MissingConverterType_test.Prop'
2 // Line: 12
3
4 namespace MonoTests.System.ComponentModel
5 {
6         public class PropertyDescriptorTests
7         {
8                 class MissingConverterType_test
9                 {
10                         class NestedClass { }
11
12                         public NestedClass Prop {
13                                 get { return null; }
14                         }
15                 }
16         }
17 }