Skip to content

Commit

Permalink
close nim-lang#5540 generic object with generic field evaluated too e…
Browse files Browse the repository at this point in the history
…arly
  • Loading branch information
timotheecour committed May 23, 2021
1 parent e125975 commit 010b554
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions tests/misc/t5540.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# bug #5540; works in 1.2.0
# fails in 1.0 (Error: cannot generate VM code for)
# fails in 0.18.0 (Error: type mismatch: got <type T>)

block:
type
Fruit = object
Yellow = object
a: int
template getColor(x: typedesc[Fruit]): typedesc = Yellow
type
Banana[T] = object
b: T
a: getColor(Fruit)
Apple[T] = object
a: T
b: getColor(T)
block:
var x: Banana[int]
doAssert x.b == 0
doAssert x.a is Yellow
block:
var x: Apple[Fruit]
doAssert x.b is Yellow

block:
type
Fruit = object
Yellow = object
a: int

template getColor(x: typedesc[Fruit]): typedesc = Yellow

type
Banana[T] = object
b: T
a: getColor(Fruit) # this one works

Apple[T] = object
a: T
b: getColor(T) # this one failed to compile

var x: Banana[int]
x.b = 13
x.a.a = 17

0 comments on commit 010b554

Please sign in to comment.