summaryrefslogtreecommitdiff
path: root/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'types.c')
-rw-r--r--types.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/types.c b/types.c
index 69cd75b..970a3d9 100644
--- a/types.c
+++ b/types.c
@@ -2038,7 +2038,12 @@ static bool types_decl(Typer *tr, Declaration *d) {
err_print(d->where, "Declaration marked for exporting, but no package output was specified.");
success = false;
} else {
+#ifdef TOC_DEBUG /* TODO: remove this */
success = export_decl(tr->exptr, d);
+#else
+ err_print(d->where, "This feature is in progress.");
+ success = false;
+#endif
}
}
} else {