swh:1:snp:aeaf3dbb58f5be84b565e73b5ade1503ee8cb6d6
Raw File
Tip revision: b6407e0f026cf5491ca5ed0a35ea5cf316ebe8ca authored by Anish Tondwalkar on 21 May 2021, 03:15:25 UTC
formatted for submission
Tip revision: b6407e0
multiPi.hs
magic as x:Int -> y:Int -> {v: Int | x == y}
assert = 0

bar as x:Int ~> {y:Int | x == y} -> Int
bar = 0

f :: Int -> Int -> Int
f = \m p -> assert p (bar m)
back to top