implement NumPowInt

This commit is contained in:
jonas schell 2022-05-08 14:17:11 +02:00
parent dd51479764
commit 532055bf3b
2 changed files with 21 additions and 3 deletions

View file

@ -1648,7 +1648,7 @@ fn floor() {
}
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-dev"))]
#[cfg(any(feature = "gen-llvm", feature = "gen-dev", feature = "gen-wasm"))]
fn pow_int() {
assert_evals_to!("Num.powInt 2 3", 8, i64);
}