[][src]Attribute Macro checkers::test

#[test]

Marks a function to be run as a test in a checkers test suite.

Examples

#[checkers::test]
fn test_leaky_box() {
    let _ = Box::into_raw(Box::new(42));
}