Files
Nim/tests/misc/t16244.nim
Bung 5917c2d5b7 fix #15836 proc arg return type auto unexpectly match proc with concr… (#21065)
* fix #15836 proc arg return type auto unexpectly match proc with concrete type

* fix #16244

* add test case for #12869
2022-12-12 06:26:18 +01:00

10 lines
134 B
Nim

discard """
errormsg: "type mismatch: got <int, float64>"
line: 9
"""
proc g(): auto = 1
proc h(): auto = 1.0
var a = g() + h()