aboutsummaryrefslogtreecommitdiffstats
path: root/src/pprint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pprint.cpp')
-rw-r--r--src/pprint.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pprint.cpp b/src/pprint.cpp
index c8176d9..506d24e 100644
--- a/src/pprint.cpp
+++ b/src/pprint.cpp
@@ -102,7 +102,6 @@ print_to(ostream& out, const AST* ast, unsigned indent, CEnv* cenv, bool types)
switch (type->kind) {
case AType::VAR: return out << "?" << type->id;
case AType::NAME: return out << type->head();
- case AType::PRIM: return out << type->head();
case AType::DOTS: return out << "...";
case AType::EXPR: break; // will catch Tuple case below
}