Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
gancherj committed Jun 1, 2023
1 parent 18006f2 commit 3cfecc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Typing.hs
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,9 @@ initDetFuncs = withNormalizedTys $ M.fromList [
l <- coveringLabel t
case nt^.val of
NT_Enc t' -> do
b1 <- flowsTo (ignore def) l advLbl
b2 <- flowsTo (ignore def) (nameLbl k) advLbl
if ((not b2)) then do
if (b1 && (not b2)) then do
-- Honest
debug $ pretty "Honest dec"
return $ TOption t'
Expand Down

0 comments on commit 3cfecc6

Please sign in to comment.