| 12519 | static bool AreCompatibleFnPtrs(PFunctionPointer * to, PFunctionPointer * from); |
| 12520 | |
| 12521 | bool CanNarrowTo(PClass * from, PClass * to) |
| 12522 | { |
| 12523 | return from->IsAncestorOf(to); |
| 12524 | } |
| 12525 | |
| 12526 | bool CanWidenTo(PClass * from, PClass * to) |
| 12527 | { |
no test coverage detected