summary refs log tree commit diff stats
path: root/tests/compiles/tcompiles.nim
blob: 1a21315c8004c8001702139400544c54cddeb1f3 (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
# test the new 'compiles' feature:

template supports(opr, x: untyped): bool =
  compiles(opr(x)) or compiles(opr(x, x))

template ok(x) =
  static:
    assert(x)

template no(x) =
  static:
    assert(not x)

type
  TObj = object

var
  myObj {.compileTime.}: TObj

ok supports(`==`, myObj)
ok supports(`==`, 45)

no supports(`++`, 34)
ok supports(`not`, true)
ok supports(`+`, 34)

no compiles(4+5.0 * "hallo")

no compiles(undeclaredIdentifier)
no compiles(undeclaredIdentifier)