diff options
Diffstat (limited to 'tests/borrow')
-rw-r--r-- | tests/borrow/tborrow.nim | 21 | ||||
-rw-r--r-- | tests/borrow/tinvalidborrow.nim | 17 |
2 files changed, 0 insertions, 38 deletions
diff --git a/tests/borrow/tborrow.nim b/tests/borrow/tborrow.nim deleted file mode 100644 index ee0d0194d..000000000 --- a/tests/borrow/tborrow.nim +++ /dev/null @@ -1,21 +0,0 @@ -discard """ - output: "4887 true" -""" - -# test the new borrow feature that works with generics: - -proc `++`*[T: int | float](a, b: T): T = - result = a + b - -type - DI = distinct int - DF = distinct float - DS = distinct string - -proc `++`(x, y: DI): DI {.borrow.} -proc `++`(x, y: DF): DF {.borrow.} - -proc `$`(x: DI): string {.borrow.} -proc `$`(x: DF): string {.borrow.} - -echo 4544.DI ++ 343.DI, " ", (4.5.DF ++ 0.5.DF).float == 5.0 diff --git a/tests/borrow/tinvalidborrow.nim b/tests/borrow/tinvalidborrow.nim deleted file mode 100644 index 9ab9e8d64..000000000 --- a/tests/borrow/tinvalidborrow.nim +++ /dev/null @@ -1,17 +0,0 @@ -discard """ - line: 11 - errormsg: "no symbol to borrow from found" -""" - -# bug #516 - -type - TAtom = culong - -proc `==`*(a, b: TAtom): bool {.borrow.} - -var - d, e: TAtom - -echo( $(d == e) ) - |