bd4f0b94a ^
dc669155e ^
1 2 3 4 5 6 7 8
9 10
11 12
13 14 15 16 17
## ## can_inherit_generic Nimrod Module ## ## Created by Eric Doughty-Papassideris on 2011-02-16. ## Copyright (c) 2011 FWA. All rights reserved. type TGen[T] = object x, y: T TSpef[T] = object of TGen[T] var s: TSpef[float] s.x = 0.4 s.y = 0.6