error[E0599]: no method named `dispatch` found for struct `AppBuilder` in the current scope
--> tests/ui/unbuilt_builder_cannot_dispatch_parse_or_render.rs:12:34
|
12 | let _result = App::builder().dispatch(matches(), OutputMode::Auto);
| ^^^^^^^^ method not found in `AppBuilder`
error[E0599]: no method named `run_with` found for struct `AppBuilder` in the current scope
--> tests/ui/unbuilt_builder_cannot_dispatch_parse_or_render.rs:13:34
|
13 | let _result = App::builder().run_with(
| ---------------^^^^^^^^ method not found in `AppBuilder`
error[E0599]: no method named `get_matches_from` found for struct `AppBuilder` in the current scope
--> tests/ui/unbuilt_builder_cannot_dispatch_parse_or_render.rs:20:24
|
20 | App::builder().get_matches_from(Command::new("app"), ["app"], &InputSources::from_process());
| ^^^^^^^^^^^^^^^^ method not found in `AppBuilder`
error[E0599]: no method named `render_with` found for struct `AppBuilder` in the current scope
--> tests/ui/unbuilt_builder_cannot_dispatch_parse_or_render.rs:21:36
|
21 | let _rendered = App::builder().render_with(
| ---------------^^^^^^^^^^^ method not found in `AppBuilder`