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:
authorEgor Bogatov <egorbo@gmail.com>2019-06-05 21:44:47 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-06-05 21:44:46 +0300
commitc5ed9bfc0d1b393c1dc6d97fc3caf8b5b09ab443 (patch)
treedf8a7247d92d41252595d47089ebfddecfaa0f66 /mcs/errors
parentf7042d48a54fe7660a5157f52bed412030c922d5 (diff)
Reflect recent NS2.1 changes (#14679)
Due to few recent updates to dotnet/standard (NETStandard 2.1) we had 40 apicompat issues. Mostly copy-pasted from dotnet/corefx. Didn't implement Cryptography stuff yet. Checked all profiles. Implements #14609
Diffstat (limited to 'mcs/errors')
-rw-r--r--mcs/errors/cs1503-18.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/mcs/errors/cs1503-18.cs b/mcs/errors/cs1503-18.cs
deleted file mode 100644
index 1c91dd8abff..00000000000
--- a/mcs/errors/cs1503-18.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-// CS1503: Argument `#1' cannot convert `int?' expression to type `System.Index'
-// Line: 11
-
-class X
-{
- public static void Main ()
- {
- string x = null;
- string y = null;
-
- var res = x?[y?.Length];
- }
-}