unison/unison-src/tests/force.u
Paul Chiusano 53d735d84a fix to instantiateL/R which was completely forgetting to instantiate effects
This appears to have been masking another error with effect inference in map-reduce.u, which is now failing with an ability check again
2018-08-31 13:36:48 -04:00

10 lines
122 B
Plaintext

effect Woot where woot : {Woot} Text
force : '{e} a ->{e} a
force a = !a
ex : '{Woot} Text
ex = '(force 'Woot.woot)
ex