summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0053.cs
blob: 3389f8e3932b1c824d227ef688ee296e315be3e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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;
}