```ucm:hide scratch/main> builtins.merge ``` ```unison use builtin Scope unique ability Async t g where async : {g} Nat unique ability Exception where raise : Nat -> x pure.run : a -> (forall t . '{Async t g} a) ->{Exception, g} a pure.run a0 a = a' : forall s . '{Scope s, Exception, g} a a' = 'a0 -- typechecks -- make sure this builtin can still be referenced Scope.run a' ```