haskell-language-server-2.15.0.0: ghcide-test/data/multi-unit-eps-pollution/a/A.hs
module A (AType, MyClass(..)) where data AType = AType Int class MyClass a where myMethod :: a -> String instance MyClass AType where myMethod (AType n) = "AType " ++ show n