### Description ```nim block: proc foo(x: int): int {.compileTime.} = x + 1 echo foo(123) # works block: proc foo(x: static int): int {.compileTime.} = x + 1 echo foo(123) # fails ``` ### Nim Version b97d603cd00a210547bda1a2a1c3e09f97fcc49e ### Current Output ```text (6, 8) Error: request to generate code for .compileTime proc: foo ``` ### Expected Output ```text 124 ``` ### Possible Solution _No response_ ### Additional Information _No response_