summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0053-3.cs
blob: e40164a4c9040405f7da2a014aa077a84c1eaf5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0053: Inconsistent accessibility: property type `MonoTests.System.ComponentModel.PropertyDescriptorTests.MissingConverterType_test.NestedClass' is less accessible than property `MonoTests.System.ComponentModel.PropertyDescriptorTests.MissingConverterType_test.Prop'
// Line: 12

namespace MonoTests.System.ComponentModel
{
	public class PropertyDescriptorTests
	{
		class MissingConverterType_test
		{
			class NestedClass { }

			public NestedClass Prop {
				get { return null; }
			}
		}
	}
}