()
| 170 | } |
| 171 | |
| 172 | pub fn create_error() -> Result<(), Report<RootError>> { |
| 173 | Err(create_report()) |
| 174 | } |
| 175 | |
| 176 | pub fn create_future() -> impl Future<Output = Result<(), Report<RootError>>> { |
| 177 | futures::future::err(create_report()) |
no test coverage detected