stub out Tag layout

This commit is contained in:
Folkert 2020-03-15 00:56:35 +01:00
parent 6088a22cb6
commit 5926ac2f01
3 changed files with 23 additions and 16 deletions

View file

@ -56,6 +56,9 @@ pub fn basic_type_from_layout<'ctx>(
Struct(_fields) => {
panic!("TODO layout_to_basic_type for Struct");
}
Tag(_fields) => {
panic!("TODO layout_to_basic_type for Tag");
}
Pointer(_layout) => {
panic!("TODO layout_to_basic_type for Pointer");
}