(_args: &[String])
| 412 | |
| 413 | #[cfg(not(feature = "aot-serializer"))] |
| 414 | fn serialize_aot_cli(_args: &[String]) -> Result<()> { |
| 415 | bail!("xtask aot-serializer requires `cargo run -p xtask --features aot-serializer -- ...`") |
| 416 | } |
| 417 | |
| 418 | #[cfg(feature = "aot-serializer")] |
| 419 | fn serialize_aot_cli(args: &[String]) -> Result<()> { |
no test coverage detected