fastmcp-rust 0.3.1

Fast, cancel-correct MCP framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Compile-fail tests for procedural macros using trybuild.
//!
//! These tests verify that macros produce clear compile errors
//! for invalid usage patterns.

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