From 7b57dc1e54d2af08b12f995bb76cd44d663b3537 Mon Sep 17 00:00:00 2001 From: narimiran Date: Mon, 15 Jun 2026 10:17:58 +0200 Subject: [PATCH] Issue #22842 is not fixed in this branch --- tests/typerel/t22842.nim | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 tests/typerel/t22842.nim diff --git a/tests/typerel/t22842.nim b/tests/typerel/t22842.nim deleted file mode 100644 index 917aee875f..0000000000 --- a/tests/typerel/t22842.nim +++ /dev/null @@ -1,11 +0,0 @@ -discard """ - output: '''done''' -""" -# Issue #22842: internal error: getTypeDescAux(tyAnything) with auto in proc type -# https://github.com/nim-lang/Nim/issues/22842 - -proc register(cb: proc (e: auto): void) = discard - -register(proc (e: int) = echo e) - -echo "done"