aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/type.hff15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/type.hff b/src/type.hff
deleted file mode 100644
index ce04063..0000000
--- a/src/type.hff
+++ /dev/null
@@ -1,15 +0,0 @@
-struct Type {
- size usize,
- align usize,
- konst bool,
- id uint,
- u enum union {
- Void,
- Bool,
- Int struct { sgn bool },
- Flo,
- Ptr *Type,
- Arr struct { child *Type, length i64 },
- Slice *Type,
- }
-}