FStar icon indicating copy to clipboard operation
FStar copied to clipboard

Ticked variables behave differently locally and at the top-level

Open mtzguido opened this issue 2 years ago • 0 comments
trafficstars

Probably not a big deal but:

// works
let _ =
  let id : 'a -> 'a = fun x -> x in
  ()

// fails with: Identifier not found ['a]
let id : 'a -> 'a = fun x -> x

mtzguido avatar Nov 09 '23 18:11 mtzguido