| 47 | /// references with an invalid index. |
| 48 | #[derive(Debug, Clone, Copy)] |
| 49 | enum Entity { |
| 50 | Block(Block), |
| 51 | Value(Value), |
| 52 | ValueGroup(ValueGroup), |
| 53 | Inst(Inst), |
| 54 | } |
| 55 | |
| 56 | impl fmt::Display for Entity { |
| 57 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected