This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0053.cs
1 // cs0053.cs: Inconsistent accessibility. Property type is less accessible than property.
2 // Line: 11
3
4 using System;
5
6 class ErrorCS0053 {
7         public ErrorCS0053 () {}
8 }
9
10 public class Foo {
11         public ErrorCS0053 Property {
12                 get { return new ErrorCS0053 (); } 
13         }
14
15         public static void Main () {
16         }
17
18         ErrorCS0053 error;
19 }
20