sails-macros 0.10.4

Procedural macros for the Sails framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg(not(feature = "ethexe"))]

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

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