error[E0599]: no method named `enable_bracketed_paste` found for struct `ftui_core::mode_typestate::TerminalMode<0>` in the current scope
--> tests/compile_fail/cooked_cannot_enable_paste.rs:6:12
|
6 | cooked.enable_bracketed_paste();
| ^^^^^^^^^^^^^^^^^^^^^^
|
help: there is a method `has_bracketed_paste` with a similar name
|
6 - cooked.enable_bracketed_paste();
6 + cooked.has_bracketed_paste();
|