mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-26 17:24:02 +00:00
typeToString: type float => typedesc[float] (#17011)
* typeToString: type float => typedesc[float] * fixup * fix tests
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
discard """
|
||||
errormsg: "invalid type: 'type int' for const"
|
||||
errormsg: "invalid type: 'typedesc[int]' for const"
|
||||
"""
|
||||
## issue #8610
|
||||
## bug #8610
|
||||
const Foo = int
|
||||
|
||||
@@ -2,7 +2,7 @@ discard """
|
||||
errormsg: "cannot instantiate B"
|
||||
line: 20
|
||||
nimout: '''
|
||||
got: <type string>
|
||||
got: <typedesc[string]>
|
||||
but expected: <T: A>
|
||||
'''
|
||||
"""
|
||||
|
||||
@@ -2,7 +2,7 @@ discard """
|
||||
errormsg: "cannot instantiate B"
|
||||
line: 14
|
||||
nimout: '''
|
||||
got: <type int>
|
||||
got: <typedesc[int]>
|
||||
but expected: <T: string or float>
|
||||
'''
|
||||
"""
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
discard """
|
||||
errormsg: "type mismatch: got <array[0..0, type int]>"
|
||||
errormsg: "type mismatch: got <array[0..0, typedesc[int]]>"
|
||||
line: 22
|
||||
nimout: '''
|
||||
twrong_at_operator.nim(22, 30) Error: type mismatch: got <array[0..0, type int]>
|
||||
twrong_at_operator.nim(22, 30) Error: type mismatch: got <array[0..0, typedesc[int]]>
|
||||
but expected one of:
|
||||
proc `@`[IDX, T](a: sink array[IDX, T]): seq[T]
|
||||
first type mismatch at position: 1
|
||||
required type for a: sink array[IDX, T]
|
||||
but expression '[int]' is of type: array[0..0, type int]
|
||||
but expression '[int]' is of type: array[0..0, typedesc[int]]
|
||||
proc `@`[T](a: openArray[T]): seq[T]
|
||||
first type mismatch at position: 1
|
||||
required type for a: openArray[T]
|
||||
but expression '[int]' is of type: array[0..0, type int]
|
||||
but expression '[int]' is of type: array[0..0, typedesc[int]]
|
||||
|
||||
expression: @[int]
|
||||
'''
|
||||
|
||||
Reference in New Issue
Block a user