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:
authorMarek Safar <marek.safar@gmail.com>2004-12-07 19:14:57 +0300
committerMarek Safar <marek.safar@gmail.com>2004-12-07 19:14:57 +0300
commit3a5fbe3cfae94f4c8d7806dedb27cbafda502ccd (patch)
treed89afb8eceb921a049a2fd5e8ab7317230c545c4 /mcs/errors/cs0448.cs
parent05b897a2d6d04a8d62d5cebaf71de05b792bb202 (diff)
reformating
svn path=/trunk/mcs/; revision=37318
Diffstat (limited to 'mcs/errors/cs0448.cs')
-rw-r--r--mcs/errors/cs0448.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/mcs/errors/cs0448.cs b/mcs/errors/cs0448.cs
index 2eb312e8e0f..0016de5e057 100644
--- a/mcs/errors/cs0448.cs
+++ b/mcs/errors/cs0448.cs
@@ -1,2 +1,7 @@
-// cs0448.cs: The return type for ++ or -- operator must be the containing type or derived from the containing type// Line: 5
-class SampleClass { public static int operator ++ (SampleClass value) { return new SampleClass(); }} \ No newline at end of file
+// cs0448.cs: The return type for ++ or -- operator must be the containing type or derived from the containing type
+// Line: 5
+class SampleClass {
+ public static int operator ++ (SampleClass value) {
+ return new SampleClass();
+ }
+}