Idris2/tests/idris2/error/perror027/expected
2023-09-07 14:57:22 +01:00

11 lines
319 B
Plaintext

1/1: Building Outdent (Outdent.idr)
Error: Not the end of a block entry, check indentation.
Outdent:4:22--4:28
1 | countdown : (secs: Nat) -> IO ()
2 | countdown Z = putStrLn "Lift off!"
3 | countdown (S secs) = do putStrLn (show (S secs))
4 | usleep 1000000
^^^^^^