123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- discard """
- nimout: '''
- staticAlialProc instantiated with 358
- staticAlialProc instantiated with 368
- '''
- output: '''
- 16
- 16
- b is 2 times a
- 17
- ['\x00', '\x00', '\x00', '\x00']
- '''
- """
- import macros
- template ok(x) = assert(x)
- template no(x) = assert(not x)
- template accept(x) =
- static: assert(compiles(x))
- template reject(x) =
- static: assert(not compiles(x))
- proc plus(a, b: int): int = a + b
- template isStatic(x: static): bool = true
- template isStatic(x: auto): bool = false
- var v = 1
- when true:
- # test that `isStatic` works as expected
- const C = 2
- static:
- ok C.isStatic
- ok isStatic(plus(1, 2))
- ok plus(C, 2).isStatic
- no isStatic(v)
- no plus(1, v).isStatic
- when true:
- # test that proc instantiation works as expected
- type
- StaticTypeAlias = static[int]
- proc staticAliasProc(a: StaticTypeAlias,
- b: static[int],
- c: static int) =
- static:
- assert a.isStatic and b.isStatic and c.isStatic
- assert isStatic(a + plus(b, c))
- echo "staticAlialProc instantiated with ", a, b, c
- when b mod a == 0:
- echo "b is ", b div a, " times a"
- echo a + b + c
- staticAliasProc 1+2, 5, 8
- staticAliasProc 3, 2+3, 9-1
- staticAliasProc 3, 3+3, 4+4
- when true:
- # test static coercions. normal cases that should work:
- accept:
- var s1 = static[int] plus(1, 2)
- var s2 = static(plus(1,2))
- var s3 = static plus(1,2)
- var s4 = static[SomeInteger](1 + 2)
- # the sub-script operator can be used only with types:
- reject:
- var just_static3 = static[plus(1,2)]
- # static coercion takes into account the type:
- reject:
- var x = static[string](plus(1, 2))
- reject:
- var x = static[string] plus(1, 2)
- reject:
- var x = static[SomeFloat] plus(3, 4)
- # you cannot coerce a run-time variable
- reject:
- var x = static(v)
- block: # issue #13730
- type Foo[T: static[float]] = object
- doAssert Foo[0.0] is Foo[-0.0]
- when true:
- type
- ArrayWrapper1[S: static int] = object
- data: array[S + 1, int]
- ArrayWrapper2[S: static[int]] = object
- data: array[S.plus(2), int]
- ArrayWrapper3[S: static[(int, string)]] = object
- data: array[S[0], int]
- var aw1: ArrayWrapper1[5]
- var aw2: ArrayWrapper2[5]
- var aw3: ArrayWrapper3[(10, "str")]
- static:
- assert aw1.data.high == 5
- assert aw2.data.high == 6
- assert aw3.data.high == 9
- # #6077
- block:
- type
- Backend = enum
- Cpu
- Tensor[B: static[Backend]; T] = object
- BackProp[B: static[Backend],T] = proc (gradient: Tensor[B,T]): Tensor[B,T]
- # https://github.com/nim-lang/Nim/issues/10073
- block:
- proc foo[N: static int](x: var int,
- y: int,
- z: static int,
- arr: array[N, int]): auto =
- var t1 = (a: x, b: y, c: z, d: N)
- var t2 = (x, y, z, N)
- doAssert t1 == t2
- result = t1
- var y = 20
- var x = foo(y, 10, 15, [1, 2, 3])
- doAssert x == (20, 10, 15, 3)
- # #7609
- block:
- type
- Coord[N: static[int]] = tuple[col, row: range[0'i8 .. (N.int8-1)]]
- Point[N: static[int]] = range[0'i16 .. N.int16 * N.int16 - 1]
- # https://github.com/nim-lang/Nim/issues/10339
- block:
- type
- MicroKernel = object
- a: float
- b: int
- macro extractA(ukernel: static MicroKernel): untyped =
- result = newLit ukernel.a
- proc tFunc[ukernel: static MicroKernel]() =
- const x = ukernel.extractA
- doAssert x == 5.5
- const uk = MicroKernel(a: 5.5, b: 1)
- tFunc[uk]()
- # bug #7258
- type
- StringValue*[LEN: static[Natural]] = array[LEN+Natural(2),char]
- StringValue16* = StringValue[2]
- var
- s: StringValue16
- echo s
- block: #13529
- block:
- type Foo[T: static type] = object
- var foo: Foo["test"]
- doAssert $foo == "()"
- doAssert foo.T is string
- static: doAssert foo.T == "test"
- doAssert not compiles(
- block:
- type Foo2[T: static type] = object
- x: T)
- block:
- type Foo[T: static[float]] = object
- var foo: Foo[1.2]
- doAssert $foo == "()"
- doAssert foo.T == 1.2
- block: # routines also work
- proc fun(a: static) = (const a2 = a)
- fun(1)
- fun(1.2)
- block: # routines also work
- proc fun(a: static type) = (const a2 = a)
- fun(1)
- fun(1.2)
- block: # this also works
- proc fun[T](a: static[T]) = (const a2 = a)
- fun(1)
- fun(1.2)
- block: # #12713
- block:
- type Cell = object
- c: int
- proc test(c: static string) = discard #Remove this and it compiles
- proc test(c: Cell) = discard
- test Cell(c: 0)
- block:
- type Cell = object
- c: int
- proc test(c: static string) = discard #Remove this and it compiles
- proc test(c: Cell) = discard
- test Cell()
- block: # issue #14802
- template fn(s: typed): untyped =
- proc bar() = discard
- 12
- const myConst = static(fn(1))
- doAssert myConst == 12
|