Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Anguiano Olarra <jaime@mono-cvs.ximian.com>2003-04-11 18:55:39 +0400
committerJaime Anguiano Olarra <jaime@mono-cvs.ximian.com>2003-04-11 18:55:39 +0400
commita68ed6a77db8406a57c5b445ba52d89b42553028 (patch)
tree1859478b3520dbfd9b91fac77553379538bfb85a /mcs/errors/cs0053.cs
parent5ef41d6554feed57b50766e2bda505d7b4704602 (diff)
Fixed.
svn path=/trunk/mcs/; revision=13523
Diffstat (limited to 'mcs/errors/cs0053.cs')
-rw-r--r--mcs/errors/cs0053.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/errors/cs0053.cs b/mcs/errors/cs0053.cs
index 6a719af89df..2a5c453a181 100644
--- a/mcs/errors/cs0053.cs
+++ b/mcs/errors/cs0053.cs
@@ -1,12 +1,13 @@
// cs0053.cs: Inconsistent accessibility. Property type is less accessible than property.
-// Line: 10
+// Line: 11
using System;
class ErrorCS0053 {
+ public ErrorCS0053 () {}
}
-class Foo {
+public class Foo {
public ErrorCS0053 Property {
get { return new ErrorCS0053 (); }
}