things that kind of work

This commit is contained in:
nora 2022-04-09 12:27:11 +02:00
parent 7087c9be0f
commit cd73da6385
9 changed files with 55 additions and 32 deletions

View file

@ -17,7 +17,7 @@ pub struct Ty {
#[derive(Debug, Clone, PartialEq)]
pub enum TyKind {
U64,
Ptr(Box<TyKind>),
Ptr(Box<Ty>),
Name(String),
}