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/cs0056.cs
parent5ef41d6554feed57b50766e2bda505d7b4704602 (diff)
Fixed.
svn path=/trunk/mcs/; revision=13523
Diffstat (limited to 'mcs/errors/cs0056.cs')
-rw-r--r--mcs/errors/cs0056.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/errors/cs0056.cs b/mcs/errors/cs0056.cs
index 4029dda4509..bdeb039581f 100644
--- a/mcs/errors/cs0056.cs
+++ b/mcs/errors/cs0056.cs
@@ -1,12 +1,13 @@
// cs0056.cs: Incompatible accessibility. Operator return type is less accessible than operator.
-// Line: 10
+// Line: 11
using System;
class ErrorCS0056 {
+ public ErrorCS0056 () {}
}
-class Foo {
+public class Foo {
public static implicit operator ErrorCS0056(Foo foo) {
return new ErrorCS0056 ();
}