summary refs log tree commit diff stats
path: root/tests/generics/tcan_specialise_generic.nim
blob: 78896db38f09241cb153d89445dd625f052857f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
##
## can_specialise_generic Nim Module
##
## Created by Eric Doughty-Papassideris on 2011-02-16.

type
  TGen[T] = object {.inheritable.}
  TSpef = object of TGen[string]