summary refs log tree commit diff stats
path: root/tests/converter/tgenericconverter.nim
blob: e1c9f7c4c32d6e6a1f13d5fca60e49ea8041a409 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
discard """
  output: '''666
666'''
"""

# test the new generic converters:

type
  TFoo2[T] = object
    x: T

  TFoo[T] = object
    data: array[0..100, T]

converter toFoo[T](a: TFoo2[T]): TFoo[T] =
  result.data[0] = a.x

proc p(a: TFoo[int]) =
  echo a.data[0]

proc q[T](a: TFoo[T]) =
  echo a.data[0]


var
  aa: TFoo2[int]
aa.x = 666

p aa
q aa