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>2018-01-19 14:33:47 +0300
committerMarek Safar <marek.safar@gmail.com>2018-01-19 16:45:10 +0300
commita5e2efe17f249ae609bdc3015fe05da5750cb224 (patch)
treed087931dcf60cb830869aa35f6237f09e8434753 /mcs/errors
parent8a968a3550d3f4bd47fd1ab2046747f56398e6f0 (diff)
[mcs] Fixes assumption that string class has no implicit/explicit conversion operators
Diffstat (limited to 'mcs/errors')
-rw-r--r--mcs/errors/cs1502-11.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/mcs/errors/cs1502-11.cs b/mcs/errors/cs1502-11.cs
deleted file mode 100644
index 82dcb3a2c17..00000000000
--- a/mcs/errors/cs1502-11.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-// CS1502: The best overloaded method match for `string.String(char*)' has some invalid arguments
-// Line: 8
-
-class C
-{
- static string Prop {
- get {
- return new string ("s");
- }
- }
-}