summary refs log tree commit diff stats
path: root/tests/stdlib/t19304.nim
blob: 5e8795ac563f86526b51d4da0e60b708e556f404 (plain) (blame)
1
2
3
4
5
6
7
import times

type DjangoDateTime* = distinct DateTime

# proc toTime*(x: DjangoDateTime): Time  {.borrow.} # <-- works
proc format*(x: DjangoDateTime, f: TimeFormat,
    loc: DateTimeLocale = DefaultLocale): string {.borrow.}