summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--tests/concepts/t3330.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/concepts/t3330.nim b/tests/concepts/t3330.nim
index 722c0a0e0..bf8bffc7d 100644
--- a/tests/concepts/t3330.nim
+++ b/tests/concepts/t3330.nim
@@ -6,9 +6,9 @@ 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(result: var string; x: float)
 proc add(x: var string; y: cstring)
 proc add[T](x: var seq[T]; y: openArray[T])
 proc add[T](x: var seq[T]; y: T)