()
| 32 | type Err = String; |
| 33 | |
| 34 | fn top() -> Self { |
| 35 | Self::Any |
| 36 | } |
| 37 | |
| 38 | fn meet(lhs: Partial<Self>, rhs: Partial<Self>) -> Result<Partial<Self>, Self::Err> { |
| 39 | use Variant::*; |
nothing calls this directly
no outgoing calls
no test coverage detected