Revert "[mcs] Special case flowanalysis of primitive structs only when they are impor...
[mono.git] / mcs / tests / test-616.cs
index d4adf2c26d4874905b7be3e542d029f22ce090f7..6f189e836f26476de172d806ce3ef909ee1bb93a 100644 (file)
@@ -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)