[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / errors / cs0053.cs
blob3389f8e3932b1c824d227ef688ee296e315be3e9
1 // CS0053: Inconsistent accessibility: property type `ErrorCS0053' is less accessible than property `Foo.Property'
2 // Line: 11
4 using System;
6 class ErrorCS0053 {
7 public ErrorCS0053 () {}
10 public class Foo {
11 public ErrorCS0053 Property {
12 get { return new ErrorCS0053 (); }
15 public static void Main () {
18 ErrorCS0053 error;