mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
10 lines
121 B
Nim
10 lines
121 B
Nim
# issue #24657
|
|
|
|
proc g() {.error.} = discard
|
|
|
|
type T = object
|
|
g: int
|
|
|
|
template B(): untyped = typeof(T.g)
|
|
type _ = B()
|