containers 0.5.5.0 → 0.5.5.1
raw patch · 3 files changed
+11/−2 lines, 3 files
Files
- Data/Set/Base.hs +1/−1
- containers.cabal +1/−1
- tests/Regressions.hs +9/−0
Data/Set/Base.hs view
@@ -229,7 +229,7 @@ type Size = Int -#if __GLASGOW_HASKELL >= 708+#if __GLASGOW_HASKELL__ >= 708 type role Set nominal #endif
containers.cabal view
@@ -1,5 +1,5 @@ name: containers-version: 0.5.5.0+version: 0.5.5.1 license: BSD3 license-file: LICENSE maintainer: fox@ucw.cz
+ tests/Regressions.hs view
@@ -0,0 +1,9 @@+module Main where++newtype Age = MkAge Int++main :: IO ()+main = return ()+ where+ -- This won't compile if the role annotations are incorrect:+