mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
11 lines
141 B
Nim
11 lines
141 B
Nim
##
|
|
## can_alias_generic Nim Module
|
|
##
|
|
## Created by Eric Doughty-Papassideris on 2011-02-16.
|
|
|
|
type
|
|
TGen[T] = object
|
|
TGen2[T] = TGen[T]
|
|
|
|
|