Inlay hints appear in this case: ```ocaml let f = let y = 0 in y ;; ``` (the `y` is annotated with `: int`) But they do not appear in this case: ```ocaml let f () = let y = 0 in y ;; ```