```Ocaml let id x = x in let orig = (id : ?) in orig 3;; ``` `orig` is a function with cast for `id`. Closure conversion cannot find the name `orig` and fails by: ```bash ***** Closure ***** Fatal error: exception Not_found ```
origis a function with cast forid.Closure conversion cannot find the name
origand fails by: