summary refs log tree commit diff stats
path: root/compiler/patterns.nim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/patterns.nim')
-rw-r--r--compiler/patterns.nim3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/patterns.nim b/compiler/patterns.nim
index 7f3bf1556..d8c7e26d9 100644
--- a/compiler/patterns.nim
+++ b/compiler/patterns.nim
@@ -121,9 +121,6 @@ proc matchNested(c: PPatternContext, p, n: PNode, rpn: bool): bool =
       add(arglist, n)
     else:
       result = false
-      debug p.sons[2].sym.typ
-      debug n.typ
-      echo "type check failed!"
     
   if n.kind notin nkCallKinds: return false
   if matches(c, p.sons[1], n.sons[0]):