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:
authorCarlos Alberto Cortez <calberto.cortez@gmail.com>2004-11-23 18:48:42 +0300
committerCarlos Alberto Cortez <calberto.cortez@gmail.com>2004-11-23 18:48:42 +0300
commit6e9876be7497c8c275a8bd6a0cc5e126ad40dec7 (patch)
treedfe71b792de483e89c962217fd0030dc1434ef7e /mcs/errors/cs0275.cs
parent049291be1c1486c1a8b019a94c0e1403625c9d54 (diff)
2004-11-23 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* cs0275.cs: New svn path=/trunk/mcs/; revision=36441
Diffstat (limited to 'mcs/errors/cs0275.cs')
-rw-r--r--mcs/errors/cs0275.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0275.cs b/mcs/errors/cs0275.cs
new file mode 100644
index 00000000000..b6da9d07a71
--- /dev/null
+++ b/mcs/errors/cs0275.cs
@@ -0,0 +1,12 @@
+// cs0275.cs(9) error CS0275: Accessibility modifiers can not be used on accessors in interfaces
+// Line: 7
+
+ public interface Error0275
+ {
+ string Message {
+ protected get;
+ set;
+ }
+
+ }
+