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/cs0136-2.cs')
-rwxr-xr-xmcs/errors/cs0136-2.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/mcs/errors/cs0136-2.cs b/mcs/errors/cs0136-2.cs
deleted file mode 100755
index 4dc9d547e32..00000000000
--- a/mcs/errors/cs0136-2.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-// cs0136.cs: local variable j can not be declared, because there is something with that name already
-// Line: 5
-class X {
- public static void Bar (int j, params int [] args)
- {
- foreach (int j in args)
- ;
- }
-}