summary refs log tree commit diff stats
path: root/tests/accept/run/tbug511622.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tbug511622.nim')
-rwxr-xr-xtests/accept/run/tbug511622.nim10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/accept/run/tbug511622.nim b/tests/accept/run/tbug511622.nim
deleted file mode 100755
index c0a2555f4..000000000
--- a/tests/accept/run/tbug511622.nim
+++ /dev/null
@@ -1,10 +0,0 @@
-import StrUtils, Math
-
-proc FibonacciA(n: int): int64 =
-  var fn = float64(n)
-  var p: float64 = (1.0 + sqrt(5.0)) / 2.0
-  var q: float64 = 1.0 / p
-  return int64((pow(p, fn) + pow(q, fn)) / sqrt(5.0))
-
-echo FibonacciA(4) #OUT 3
-