mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
12 lines
194 B
Nim
12 lines
194 B
Nim
##
|
|
## can_alias_generic Nimrod Module
|
|
##
|
|
## Created by Eric Doughty-Papassideris on 2011-02-16.
|
|
## Copyright (c) 2011 FWA. All rights reserved.
|
|
|
|
type
|
|
TGen[T] = object
|
|
TGen2[T] = TGen[T]
|
|
|
|
|