blob: ee5ba89d50cf84487cf3f62b02d4b2d39786c3b9 (
plain) (
tree)
|
|
discard """
output: "seq[float]\n0"
targets: "c cpp"
"""
# https://github.com/nim-lang/Nim/issues/5602
import typetraits, module_with_generics
type
Foo[T] = object of RootObj
Bar[T] = object of Foo[seq[T]]
proc p[T](f: Foo[T]): T =
echo T.name
var s: Bar[float]
echo p(s).len # the bug was: p(s) should return seq[float], but returns float instead
# Test overloading and code generation when
# downcasting is required for generic types:
var d = makeDerived(10)
setBaseValue(d, 20)
|