lean4-htt/tests/lean/run/parsePrelude.lean
Rob23oba e713232623
fix: resolve symbolic links through IO.FS.realPath on windows (#8534)
This PR fixes `IO.FS.realPath` on windows to take symbolic links into
account.

Closes #810
2025-06-13 13:16:13 +00:00

8 lines
230 B
Text

import Lean.Parser
def test : IO Unit := do
let env ← Lean.mkEmptyEnvironment;
discard <| Lean.Parser.testParseFile env (System.mkFilePath ["..", "..", "..", "src", "Init", "Prelude.lean"]);
IO.println "done"
#eval test