Files
Nim/tests/system/tcopyprotected_arrayinit.nim
Sam 1fddb61b3b Fixes #24369 (#24370)
Hope this fixes #24369, happy for any feedback on the PR.
2024-11-10 17:16:07 +01:00

11 lines
139 B
Nim

type
Bar = object
b: int = 1
Foo = object
f: array[1, Bar]
proc `=copy`(dest: var Bar, source: Bar) {.error.}
discard Foo()