()
| 41 | } |
| 42 | |
| 43 | fn main() { |
| 44 | if let Err(report) = parse_config("config.json") { |
| 45 | eprintln!("{report:?}"); |
| 46 | #[cfg(nightly)] |
| 47 | for suggestion in report.request_ref::<Suggestion>() { |
| 48 | eprintln!("Suggestion: {}", suggestion.0); |
| 49 | } |
| 50 | } |
| 51 | } |
nothing calls this directly
no test coverage detected