packages feed

hls-rename-plugin-1.0.0.0: test/testdata/DataConstructor.hs

data Expr = Apply Int Int

plus :: Expr -> Expr
plus (Apply n m) = Apply (n + m) 0