diff options
author | Araq <rumpf_a@web.de> | 2018-11-16 13:27:46 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-11-16 13:27:56 +0100 |
commit | 3f6168b3372013c0d4b938e6a83849199d9756c9 (patch) | |
tree | bb5eaf3d75d30fabe4325049238611659aa0c420 /tests/misc | |
parent | 4233046e3f62c89495b8e351b328401322296b56 (diff) | |
download | Nim-3f6168b3372013c0d4b938e6a83849199d9756c9.tar.gz |
removes deprecated T/P types
Diffstat (limited to 'tests/misc')
-rw-r--r-- | tests/misc/tlastmod.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/tlastmod.nim b/tests/misc/tlastmod.nim index 538b5e656..c622ab518 100644 --- a/tests/misc/tlastmod.nim +++ b/tests/misc/tlastmod.nim @@ -5,7 +5,7 @@ import proc main() = var - a, b: TTime + a, b: Time a = getLastModificationTime(paramStr(1)) b = getLastModificationTime(paramStr(2)) writeLine(stdout, $a) |