diff options
author | Fabian Keller <bluenote10@users.noreply.github.com> | 2017-12-14 14:02:13 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-12-14 14:02:13 +0100 |
commit | 6df6ec27ec573fc7f619f7bf9fece6d6b0dc931f (patch) | |
tree | f9eadca2e1b46112ec11da257cb664010a369a8d /tests/concepts | |
parent | bc1123536e36a222dc3bf65c40c6ceee07da6499 (diff) | |
download | Nim-6df6ec27ec573fc7f619f7bf9fece6d6b0dc931f.tar.gz |
Improved collection-to-string behavior (#6825)
Diffstat (limited to 'tests/concepts')
-rw-r--r-- | tests/concepts/t3330.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/concepts/t3330.nim b/tests/concepts/t3330.nim index fcd5054ef..722c0a0e0 100644 --- a/tests/concepts/t3330.nim +++ b/tests/concepts/t3330.nim @@ -6,10 +6,10 @@ but expected one of: proc test(foo: Foo[int]) t3330.nim(25, 8) Hint: Non-matching candidates for add(k, string, T) proc add(x: var string; y: string) +proc add(result: var string; x: float) proc add(x: var string; y: char) proc add(result: var string; x: int64) proc add(x: var string; y: cstring) -proc add(result: var string; x: float) proc add[T](x: var seq[T]; y: openArray[T]) proc add[T](x: var seq[T]; y: T) |