packages feed

haskell-language-server-2.15.0.0: ghcide-test/data/boot-qualified/B.hs

module B where

import {-# SOURCE #-} A (T(T))
import qualified A as QA

data BB = BB Int

-- Uses QA.extraFn, which is exported by A.hs but NOT by A.hs-boot.
-- ghcide reports
--   Variable not in scope: QA.extraFn ...
--   NB: the module 'A' does not export 'extraFn'
-- because it resolves the qualified import against the hs-boot exports
-- instead of the full module.
someBFn :: Int -> Int
someBFn n = case QA.extraFn (T n) of
  T m -> m