diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-04-22 07:10:55 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-22 07:10:55 +0200 |
commit | 34b333b1403128b84b93b6ede6f0b1378d7e67df (patch) | |
tree | b59699b2baba1be4898108c35c8eac3b2d76a76c /tests/overload | |
parent | 0ba50f98909b862e813da558e297ec1681fd7e7d (diff) | |
download | Nim-34b333b1403128b84b93b6ede6f0b1378d7e67df.tar.gz |
make tests green again
Diffstat (limited to 'tests/overload')
-rw-r--r-- | tests/overload/toverprc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/overload/toverprc.nim b/tests/overload/toverprc.nim index 112eae096..9be2203f6 100644 --- a/tests/overload/toverprc.nim +++ b/tests/overload/toverprc.nim @@ -11,7 +11,7 @@ proc parseInt(x: float): int {.noSideEffect.} = discard proc parseInt(x: bool): int {.noSideEffect.} = discard proc parseInt(x: float32): int {.noSideEffect.} = discard proc parseInt(x: int8): int {.noSideEffect.} = discard -proc parseInt(x: TFile): int {.noSideEffect.} = discard +proc parseInt(x: File): int {.noSideEffect.} = discard proc parseInt(x: char): int {.noSideEffect.} = discard proc parseInt(x: int16): int {.noSideEffect.} = discard |