2003-01-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / errors / cs0053.cs
1 // cs0053.cs: Inconsistent accessibility. Property type is less accessible than property.
2 // Line: 10
3
4 using System;
5
6 class ErrorCS0053 {
7 }
8
9 class Foo {
10         public ErrorCS0053 Property {
11                 get { return new ErrorCS0053 (); } 
12         }
13
14         public static void Main () {
15         }
16
17         ErrorCS0053 error;
18 }
19