summaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorSon Ho2023-08-04 18:55:14 +0200
committerSon Ho2023-08-04 18:55:14 +0200
commit42b37b07b03c6bd594cac11b1f639ba66e16771b (patch)
tree04782cdc3b25fdf7e2da701aceb25bf1b2818ef3 /backends
parentf7c09787c4a7457568d3d79d38b45caac4af8772 (diff)
Add the UtilsBase.lean file
Diffstat (limited to '')
-rw-r--r--backends/lean/Base/UtilsBase.lean10
1 files changed, 10 insertions, 0 deletions
diff --git a/backends/lean/Base/UtilsBase.lean b/backends/lean/Base/UtilsBase.lean
new file mode 100644
index 00000000..f6c33be7
--- /dev/null
+++ b/backends/lean/Base/UtilsBase.lean
@@ -0,0 +1,10 @@
+import Lean
+
+namespace Utils
+
+open Lean Elab Term Meta
+
+-- We can't define and use trace classes in the same file
+initialize registerTraceClass `Utils
+
+end Utils