mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
Test case for #7010
This commit is contained in:
19
tests/distinct/t7010.nim
Normal file
19
tests/distinct/t7010.nim
Normal file
@@ -0,0 +1,19 @@
|
||||
discard """
|
||||
exitcode: 0
|
||||
output: ''''''
|
||||
"""
|
||||
|
||||
# Snippet not defined as ```nim
|
||||
|
||||
type MyInt* = distinct int
|
||||
|
||||
proc `+`*(x: MyInt, y: MyInt): MyInt {.borrow.}
|
||||
proc `+=`*(x: var MyInt, y: MyInt) {.borrow.}
|
||||
proc `=`*(x: var MyInt, y: MyInt) {.borrow.}
|
||||
|
||||
var next: MyInt
|
||||
|
||||
proc getNext*() : MyInt =
|
||||
result = next
|
||||
next += 1.MyInt
|
||||
next = next + 1.MyInt
|
||||
Reference in New Issue
Block a user