[GHC] #9264: Scoped kind variables do not work with default associated types

#9264: Scoped kind variables do not work with default associated types ------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.2 Keywords: | Operating System: Unknown/Multiple Architecture: Unknown/Multiple | Type of failure: None/Unknown Difficulty: Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | ------------------------------------+------------------------------------- I have {{{ {-# LANGUAGE PolyKinds, TypeFamilies, ScopedTypeVariables #-} module Bug where class C (a :: k) where type F (a :: k) type F (a :: k) = Int }}} Compiling gives me {{{ Bug.hs:7:11: The signature specified kind ‘k1’, but ‘a’ has kind ‘k2’ In the type ‘(a :: k)’ In the type instance declaration for ‘F’ In the class declaration for ‘C’ }}} The error is on the line declaring the default associated type for `F`. This happens in both 7.8.2 and HEAD. Having !ScopedTypeVariables causes no change, but I put it in the example to emphasize that adding !ScopedTypeVariables is not the solution. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/9264 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#9264: Scoped kind variables do not work with default associated types -------------------------------------+------------------------------------ Reporter: goldfire | Owner: simonpj Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------ Changes (by simonpj): * owner: => simonpj Comment: I have a patch that fixes this, among other things. But it'll have to wait till I get back from holiday on 14 July. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/9264#comment:1 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#9264: Scoped kind variables do not work with default associated types
-------------------------------------+------------------------------------
Reporter: goldfire | Owner: simonpj
Type: bug | Status: new
Priority: normal | Milestone:
Component: Compiler | Version: 7.8.2
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture: Unknown/Multiple
Type of failure: None/Unknown | Difficulty: Unknown
Test Case: | Blocked By:
Blocking: | Related Tickets:
-------------------------------------+------------------------------------
Comment (by Simon Peyton Jones

#9264: Scoped kind variables do not work with default associated types -------------------------------------+------------------------------------- Reporter: goldfire | Owner: simonpj Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.8.2 Resolution: fixed | Keywords: Differential Revisions: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: polykinds/T9264 Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => closed * testcase: => polykinds/T9264 * resolution: => fixed -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/9264#comment:3 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler
participants (1)
-
GHC