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:
Diffstat (limited to 'mcs/errors/cs0126.cs')
-rw-r--r--mcs/errors/cs0126.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/mcs/errors/cs0126.cs b/mcs/errors/cs0126.cs
deleted file mode 100644
index 2742abfdb09..00000000000
--- a/mcs/errors/cs0126.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-// cs0126: an object of type `int' is expected in the return statement
-// Line: 7
-
-class X {
- int X ()
- {
- return;
- }
-}