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:
authorBen Maurer <benm@mono-cvs.ximian.com>2003-08-29 02:17:32 +0400
committerBen Maurer <benm@mono-cvs.ximian.com>2003-08-29 02:17:32 +0400
commit52f615c07accdaa9fa505981dcdd696622e24f58 (patch)
tree81159b99b1ac9b3a8f3fe984f82e203c7d311601 /mcs/errors/cs0666.xml
parent692d094a5b259b503f6b014b44f7d10e395cd8b3 (diff)
2003-08-28 Ben Maurer <bmaurer@users.sourceforge.net>
* cs0666.xml: added sample xml file for monodoc error provider. svn path=/trunk/mcs/; revision=17711
Diffstat (limited to 'mcs/errors/cs0666.xml')
-rw-r--r--mcs/errors/cs0666.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/errors/cs0666.xml b/mcs/errors/cs0666.xml
new file mode 100644
index 00000000000..aa6d6b6a43d
--- /dev/null
+++ b/mcs/errors/cs0666.xml
@@ -0,0 +1,15 @@
+<ErrorDetails>
+ <Summary>
+ <p>
+ It is not permissable to have a protected member
+ inside a struct.
+ </p>
+ </Summary>
+ <Details>
+ <p>
+ As structs are implicitly declared as <b>sealed</b> they
+ can not have protected members. Usually you can fix this
+ error by changing the scope of the variable.
+ </p>
+ </Details>
+</ErrorDetails> \ No newline at end of file