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: '''
true
true
false
true
true
false
true
'''
"""
block tlowhigh:
type myEnum = enum e1, e2, e3, e4, e5
var a: array[myEnum, int]
for i in low(a) .. high(a):
a[i] = 0
proc sum(a: openarray[int]): int =
result = 0
for i in low(a)..high(a):
inc(result, a[i])
doAssert sum([1, 2, 3, 4]) == 10
block t8693:
type Foo = int | float
proc bar(t1, t2: typedesc): bool =
echo (t1 is t2)
(t2 is t1)
proc bar[T](x: T, t2: typedesc): bool =
echo (T is t2)
(t2 is T)
doAssert bar(int, Foo) == false
doAssert bar(4, Foo) == false
doAssert bar(any, int)
doAssert bar(int, any) == false
doAssert bar(Foo, Foo)
doAssert bar(any, Foo)
doAssert bar(Foo, any) == false
|