File: tgenericdotrettype.nim

package info (click to toggle)
nim 0.19.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 462,356 kB
  • sloc: sh: 11,089; ansic: 4,699; makefile: 706; python: 309; sql: 297; asm: 141; xml: 13
file content (29 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (6)
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
discard """
output: '''string
int
(int, string)
'''
"""

import typetraits

type
  Foo[T, U] = object
    x: T
    y: U

proc bar[T](a: T): T.U =
  echo result.type.name

proc bas(x: auto): x.T =
  echo result.type.name

proc baz(x: Foo): (Foo.T, x.U) =
  echo result.type.name

var
  f: Foo[int, string]
  x = bar f
  z = bas f
  y = baz f