Skip to content

Fix false positive for NoUnused.Variables

Latest
Compare
Choose a tag to compare
@jfmengels jfmengels released this 02 Apr 12:13
· 661 commits to master since this release

Fixes a false positive for NoUnused.Variables: In the following code, the import of A would be reported even though it is used.

import A

a =
  let
    (A.Thing subValue) = value
  in
  subValue