| 831 | optional_ref<const ErrorValue> AsError() const& ABSL_ATTRIBUTE_LIFETIME_BOUND; |
| 832 | absl::optional<ErrorValue> AsError() &&; |
| 833 | absl::optional<ErrorValue> AsError() const&& { |
| 834 | return common_internal::AsOptional(AsError()); |
| 835 | } |
| 836 | |
| 837 | // Performs a checked cast from a value to an int value, |
| 838 | // returning a non-empty optional with either a value or reference to the |
no test coverage detected