mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 10:52:14 +00:00
* fixes internal error: no generic body fixes #1500 * adds guard * adds guard * removes unnecessary test * refactor: extracts containsGenericInvocationWithForward
8 lines
177 B
Nim
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 |