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/cs0206.cs')
-rwxr-xr-xmcs/errors/cs0206.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/errors/cs0206.cs b/mcs/errors/cs0206.cs
deleted file mode 100755
index 03c79bf1a9a..00000000000
--- a/mcs/errors/cs0206.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-// cs0206.cs: indexers or properties can not be used as ref or out arguments
-// Line:
-class X {
- static int P { get { return 1; } set { } }
-
- static int m (out int v)
- {
- v = 1;
- return 1;
- }
-
- static void Main ()
- {
- m (out P);
- }
-}