We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055cc61 commit 4b14106Copy full SHA for 4b14106
src/Nix/Type/Infer.hs
@@ -553,7 +553,7 @@ instance MonadInfer m => MonadEval (Judgment s) (InferT s m) where
553
call = k arg $ \args b -> (args, ) <$> b
554
names = fst <$> js
555
556
- (args, Judgment as cs t) <- foldr (\(_, TVar a) -> extendMSet a) call js
+ (args, Judgment as cs t) <- foldr (extendMSet . (\ (TVar a) -> a) . snd) call js
557
558
ty <- foldInitializedWith (TSet variadic) inferredType id args
559
0 commit comments