File: timports.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 (45 lines) | stat: -rw-r--r-- 686 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
discard """
  output: '''
317
TEST2
5 5 5
false
'''
"""

import mbind_bracket, mclosed_sym, mdotlookup, mmodule_same_as_proc


block tbind_bracket:
  # bug #2599
  # also test that `[]` can be passed now as a first class construct:

  template takeBracket(x, a, i: untyped) =
    echo x(a, i)

  var a: array[10, int]
  a[8] = 317

  takeBracket(`[]`, a, 8)

  let reg = newRegistry[UUIDObject]()
  reg.register(UUIDObject())


block tclosed_sym:
  # bug #2664
  proc same(r:R, d:int) = echo "TEST1"
  doIt(Data[int](d:123), R())


block tdotlookup:
  foo(7)
  # bug #1444
  fn(4)


block tmodule_same_as_proc:
  # bug #1965
  proc test[T](t: T) =
    mmodule_same_as_proc"a"
  test(0)