envision 0.17.0

A ratatui framework for collaborative TUI development with headless testing support
Documentation
1
2
3
4
5
6
7
8
9
10
//! Compile-fail tests for the App args design.
//!
//! Pins the compile-time enforcement promise — forgetting `with_args` for
//! non-`()` Args types is a compile error, not a runtime panic.

#[test]
fn compile_fail_app_args() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/trybuild_app_args/missing_with_args.rs");
}