viewpoint-test-macros 0.2.13

Procedural macros for Viewpoint test framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Compile-fail tests for viewpoint-test-macros.
//!
//! These tests verify that the macro produces helpful error messages
//! for invalid usage patterns.

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