summary refs log tree commit diff stats
path: root/tests/generics/t1500.nim
blob: 6dd457d336c0e6c656fa382a1d826cffea30d914 (plain) (blame)
1
2
3
4
5
6
7
8
#issue 1500

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