Import Upstream version 20180207
[hcoop/debian/mlton.git] / regression / substring-overflow.sml
CommitLineData
7f918cf1
CE
1open Substring
2
3val _ =
4 (slice (full "abc", 1, SOME (valOf Int.maxInt))
5 ; print "ERROR\n")
6 handle Subscript => print "OK\n"