Files
Nim/tests/generics/t1500.nim
Juan M Gómez 0c6e13806d fixes internal error: no generic body fixes #1500 (#22580)
* fixes internal error: no generic body fixes #1500

* adds guard

* adds guard

* removes unnecessary test

* refactor: extracts containsGenericInvocationWithForward
2023-09-01 13:42:47 +02:00

8 lines
177 B
Nim

#issue 1500
type
TFtpBase*[SockType] = object
job: TFTPJob[SockType]
PFtpBase*[SockType] = ref TFtpBase[SockType]
TFtpClient* = TFtpBase[string]
TFTPJob[T] = object