This commit is contained in:
Ryan Levick 2019-09-23 13:59:14 +00:00
Родитель f757860a28
Коммит abacd5b75c
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -3,6 +3,7 @@ name = "macros"
version = "0.1.0"
authors = ["adrianwithah <lim.weiheng.hadrian@gmail.com>"]
edition = "2018"
autotests = false
[lib]
proc-macro = true

Просмотреть файл

@ -3,5 +3,5 @@ extern crate trybuild;
#[test]
fn test_com_interface() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/*.rs");
t.compile_fail("tests/no_supertrait.rs");
}