mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
11 lines
139 B
Nim
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()
|