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

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