hydro_lang 0.16.0

A Rust framework for correct and performant distributed systems
Documentation
1
2
3
4
5
6
7
8
9
#[test]
fn test_all() {
    let t = trybuild::TestCases::new();
    #[cfg(nightly)]
    let path = "tests/compile-fail/*.rs";
    #[cfg(not(nightly))]
    let path = "tests/compile-fail-stable/*.rs";
    t.compile_fail(path);
}