aboutsummaryrefslogtreecommitdiffstats
path: root/validator_derive/tests/compile-fail/range
diff options
context:
space:
mode:
authorVincent Prouillet2017-01-28 19:04:48 +0900
committerVincent Prouillet2017-01-28 19:04:48 +0900
commit74a83684a0f3dcc8824fe124fa047641ddf2f7bc (patch)
treede4a087ad2cd674fdcbc1a83a3e0fd3c3e5dcc30 /validator_derive/tests/compile-fail/range
parent1014ac364725386579ecbd21a520a9d3eb56979e (diff)
downloadvalidator-74a83684a0f3dcc8824fe124fa047641ddf2f7bc.tar.bz2
Update deps
Diffstat (limited to 'validator_derive/tests/compile-fail/range')
-rw-r--r--validator_derive/tests/compile-fail/range/missing_arg.rs2
-rw-r--r--validator_derive/tests/compile-fail/range/no_args.rs2
-rw-r--r--validator_derive/tests/compile-fail/range/unknown_arg.rs2
-rw-r--r--validator_derive/tests/compile-fail/range/wrong_type.rs2
4 files changed, 3 insertions, 5 deletions
diff --git a/validator_derive/tests/compile-fail/range/missing_arg.rs b/validator_derive/tests/compile-fail/range/missing_arg.rs
index 94913cf..9f8a537 100644
--- a/validator_derive/tests/compile-fail/range/missing_arg.rs
+++ b/validator_derive/tests/compile-fail/range/missing_arg.rs
@@ -1,4 +1,4 @@
-#![feature(proc_macro, attr_literals)]
+#![feature(attr_literals)]
#[macro_use] extern crate validator_derive;
extern crate validator;
diff --git a/validator_derive/tests/compile-fail/range/no_args.rs b/validator_derive/tests/compile-fail/range/no_args.rs
index 0532cc0..cef93fe 100644
--- a/validator_derive/tests/compile-fail/range/no_args.rs
+++ b/validator_derive/tests/compile-fail/range/no_args.rs
@@ -1,5 +1,3 @@
-#![feature(proc_macro, attr_literals)]
-
#[macro_use] extern crate validator_derive;
extern crate validator;
use validator::Validate;
diff --git a/validator_derive/tests/compile-fail/range/unknown_arg.rs b/validator_derive/tests/compile-fail/range/unknown_arg.rs
index 7d2ac57..e20be74 100644
--- a/validator_derive/tests/compile-fail/range/unknown_arg.rs
+++ b/validator_derive/tests/compile-fail/range/unknown_arg.rs
@@ -1,4 +1,4 @@
-#![feature(proc_macro, attr_literals)]
+#![feature(attr_literals)]
#[macro_use] extern crate validator_derive;
extern crate validator;
diff --git a/validator_derive/tests/compile-fail/range/wrong_type.rs b/validator_derive/tests/compile-fail/range/wrong_type.rs
index e341364..50c253d 100644
--- a/validator_derive/tests/compile-fail/range/wrong_type.rs
+++ b/validator_derive/tests/compile-fail/range/wrong_type.rs
@@ -1,4 +1,4 @@
-#![feature(proc_macro, attr_literals)]
+#![feature(attr_literals)]
#[macro_use] extern crate validator_derive;
extern crate validator;