fp-macros 0.7.0

Procedural macros for generating and working with Higher-Kinded Type (HKT) traits in the fp-library crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Compile-fail and compile-pass tests for fp-macros.
//!
//! Compile-fail tests verify that macros produce helpful error messages.
//! Compile-pass tests verify that warning-emitting macros don't block compilation.

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