Skip to content

Commit

Permalink
Revert "fixes #13378 [backport] (#13392)"
Browse files Browse the repository at this point in the history
This reverts commit 14e1f82.
  • Loading branch information
narimiran committed Feb 21, 2020
1 parent cfd0ae4 commit b692438
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
2 changes: 0 additions & 2 deletions compiler/sigmatch.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1945,8 +1945,6 @@ proc localConvMatch(c: PContext, m: var TCandidate, f, a: PType,

if result != nil:
if result.typ == nil: return nil
# bug #13378, ensure we produce a real generic instantiation:
result = c.semExpr(c, call)
# resulting type must be consistent with the other arguments:
var r = typeRel(m, f.sons[0], result.typ)
if r < isGeneric: return nil
Expand Down
16 changes: 0 additions & 16 deletions tests/generics/tgeneric0.nim
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ discard """
0
float32
float32
(name: "Resource 1", readers: ..., writers: ...)
'''
"""

Expand Down Expand Up @@ -125,18 +124,3 @@ block tgeneric5:
echo T

bar(0.0'f32)

# bug #13378

type
Resource = ref object of RootObj
name: string
readers, writers: seq[RenderTask]

RenderTask = ref object
name: string

var res = Resource(name: "Resource 1")

(proc (r: typeof(res)) =
echo r[])(res)

0 comments on commit b692438

Please sign in to comment.