| 112 | Array(ArrayLen, Box<Self>), |
| 113 | // T[] slice: a {ptr, len} fat pointer, bounds-checked at use. |
| 114 | Slice(Box<Self>), |
| 115 | Function { |
| 116 | params: Vec<Self>, |
| 117 | return_type: Option<Box<Self>>, |
| 118 | }, |
| 119 | Struct(Vec<FieldDecl>), |
no outgoing calls
no test coverage detected