mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* Don't leave dangling forward references to types Fixes #8616 * Add a test case for #8616
3 lines
60 B
Nim
3 lines
60 B
Nim
proc head*[T](pp: var array[1,T]): var T =
|
|
result = pp[0]
|