Files
Nim/tests/errmsgs/tdistinct_nil.nim
ringabout 1182216381 remove a special case in sigmatch; distinct pointer types no longer match nil type (#20251)
* remove a special case in sigmatch; distinct pointer types no longer match `nil` type

* add tests

* fixes tests

* Update changelog.md

Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
2022-08-23 19:27:20 +02:00

24 lines
457 B
Nim

discard """
cmd: "nim check $file"
action: reject
nimout: '''
tdistinct_nil.nim(23, 4) Error: type mismatch: got <typeof(nil)>
but expected one of:
proc foo(x: DistinctPointer)
first type mismatch at position: 1
required type for x: DistinctPointer
but expression 'nil' is of type: typeof(nil)
expression: foo(nil)
'''
"""
type
DistinctPointer = distinct pointer
proc foo(x: DistinctPointer) =
discard
foo(DistinctPointer(nil))
foo(nil)