# bug #16987procgetNum(a:int):int=a# Below calls "doAssert getNum(123) == 123" at compile time.static:doAssertgetNum(123)==123# Below calls evaluate the "getNum(123)" at compile time, but the# results of those calls get used at run time.doAssert(staticgetNum(123))==123doAssert(static(getNum(123)))==123