mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
* fix #13538 sigmatch now sorted and has reliable order * re-enable tests that were disabled because of that bug * fix remaining tests and un-disable 2 other tests that were affected by this bug
28 lines
784 B
Nim
28 lines
784 B
Nim
discard """
|
|
cmd: "nim check $file"
|
|
errormsg: "type mismatch: got <string, set[char], maxsplits: int literal(1)>"
|
|
nimout: '''
|
|
proc rsplit(s: string; sep: char; maxsplit: int = -1): seq[string]
|
|
first type mismatch at position: 2
|
|
required type for sep: char
|
|
but expression '{':'}' is of type: set[char]
|
|
proc rsplit(s: string; sep: string; maxsplit: int = -1): seq[string]
|
|
first type mismatch at position: 2
|
|
required type for sep: string
|
|
but expression '{':'}' is of type: set[char]
|
|
proc rsplit(s: string; seps: set[char] = Whitespace; maxsplit: int = -1): seq[string]
|
|
first type mismatch at position: 3
|
|
unknown named parameter: maxsplits
|
|
|
|
expression: rsplit("abc:def", {':'}, maxsplits = 1)
|
|
'''
|
|
"""
|
|
|
|
|
|
# bug #8043
|
|
|
|
|
|
|
|
import strutils
|
|
"abc:def".rsplit({':'}, maxsplits = 1)
|