(n: u32)
| 48 | struct InstColor(u32); |
| 49 | impl InstColor { |
| 50 | fn new(n: u32) -> InstColor { |
| 51 | InstColor(n) |
| 52 | } |
| 53 | |
| 54 | /// Get an arbitrary index representing this color. The index is unique |
| 55 | /// *within a single function compilation*, but indices may be reused across |
nothing calls this directly
no test coverage detected