ditto-lang/ditto

Warn for unused unqualified imports

Opened this issue · 0 comments

The following should raise a warning:

module Example exports (..);

import Bool (
    not,  -- unused!
);


yes = Bool.and(true, true);