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/cs0055.cs
parent5ef41d6554feed57b50766e2bda505d7b4704602 (diff)
Fixed.
svn path=/trunk/mcs/; revision=13523
Diffstat (limited to 'mcs/errors/cs0055.cs')
-rw-r--r--mcs/errors/cs0055.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/errors/cs0055.cs b/mcs/errors/cs0055.cs
index 1ba12ae0a8d..099887e49a8 100644
--- a/mcs/errors/cs0055.cs
+++ b/mcs/errors/cs0055.cs
@@ -1,12 +1,13 @@
// cs0055.cs: Inconsistent accessibility. Parameter type is less accessible than indexer.
-// Line: 10
+// Line: 11
using System;
class ErrorCS0055 {
+ public ErrorCS0055 () {}
}
-class Foo {
+public class Foo {
public ErrorCS0055 this[ErrorCS0055 e] {
get { return new ErrorCS0055 (); }
}