<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0053</ErrorName>
  <Examples>
    <string>// CS0053: Inconsistent accessibility: property type `ErrorCS0053' is less accessible than property `Foo.Property'
// Line: 11

using System;

class ErrorCS0053 {
	public ErrorCS0053 () {}
}

public class Foo {
	public ErrorCS0053 Property {
		get { return new ErrorCS0053 (); } 
	}

	public static void Main () {
	}

	ErrorCS0053 error;
}

</string>
    <string>// 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; }
			}
		}
	}
}
</string>
    <string>// CS0053: Inconsistent accessibility: property type `Blah[]' is less accessible than property `A.B'
// Line: 6

public class A {

	public Blah [] B {
		get { return null; }
	}

	static void Main () {}
}

class Blah {
	
}
</string>
  </Examples>
</ErrorDocumentation>