(define impc:compiler:print-missing-generic-type-error
(lambda (type-name)
(print-with-colors *impc:compiler:pretty-print-error-color*
'default #t (print "Type Error"))
(print " cannot find generic type ")
(print-with-colors *impc:compiler:pretty-print-type-color* 'default #f (print type-name "\n"))
(if (impc:aot:currently-compiling?)
(quit 2)
(throw ""))))