You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type
A {.inheritable.} =object
B =objectof A
proc`=copy`(a: var A, x: A) {.error.}
#proc `=copy`(a: var B, x: B) {.error.}procffff(v: sink B) =echo v
procg() =var b: B
ffff(b)
ffff(b)
g()
If I can't copy A, I obviously can't copy B..
Current Output
compiles
Expected Output
erorr
Known Workarounds
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered:
Nim Version
2.2
Description
If I can't copy A, I obviously can't copy B..
Current Output
compiles
Expected Output
erorr
Known Workarounds
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered: