blob: 56fd7263005947cec9338a29b7c064d8ed0c1e5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
##
## specialised_is_equivalent Nim Module
##
## Created by Eric Doughty-Papassideris on 2011-02-16.
type
TGen[T] = tuple[a: T]
TSpef = tuple[a: string]
var
a: TGen[string]
b: TSpef
a = b
|