mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
17 lines
218 B
Nim
17 lines
218 B
Nim
##
|
|
## can_inherit_generic Nim Module
|
|
##
|
|
## Created by Eric Doughty-Papassideris on 2011-02-16.
|
|
|
|
type
|
|
TGen[T] = object of TObject
|
|
x, y: T
|
|
|
|
TSpef[T] = object of TGen[T]
|
|
|
|
|
|
var s: TSpef[float]
|
|
s.x = 0.4
|
|
s.y = 0.6
|
|
|