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>2015-03-25 21:15:56 +0300
committerMarek Safar <marek.safar@gmail.com>2015-03-25 21:17:31 +0300
commitdf423753f1fc9967b87e94f85181f8067e000d8f (patch)
tree0fc58776158c2b19901b935cf86c1657420c4768 /mcs/tests/test-616.cs
parent579a7b47482c4ac0b69b9674fe0bc77ae38ee5bf (diff)
Revert "[mcs] Special case flowanalysis of primitive structs only when they are imported. Fixes #28296"
This reverts commit b50e898ece06bf7dacbea6211406cca1af5ea5af.
Diffstat (limited to 'mcs/tests/test-616.cs')
-rw-r--r--mcs/tests/test-616.cs14
1 files changed, 1 insertions, 13 deletions
diff --git a/mcs/tests/test-616.cs b/mcs/tests/test-616.cs
index d4adf2c26d4..6f189e836f2 100644
--- a/mcs/tests/test-616.cs
+++ b/mcs/tests/test-616.cs
@@ -25,6 +25,7 @@ namespace System
public struct UInt64 {}
public struct IntPtr {}
public struct UIntPtr {}
+ public struct Decimal { }
public class String { }
public class Delegate {}
public class MulticastDelegate {}
@@ -42,19 +43,6 @@ namespace System
public interface IDisposable {}
- public struct Decimal {
-
- private int flags;
-
- public Decimal(int[] bits) {
- flags = 0;
- SetBits(bits);
- }
-
- private void SetBits(int[] bits) {
- }
- }
-
partial class Type
{
public static bool operator == (Type left, Type right)