summaryrefslogtreecommitdiff
path: root/src/test/auxiliary/svh-a-macro.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/auxiliary/svh-a-macro.rs')
-rw-r--r--src/test/auxiliary/svh-a-macro.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/auxiliary/svh-a-macro.rs b/src/test/auxiliary/svh-a-macro.rs
index b8dd497ac99..1e12659dc4b 100644
--- a/src/test/auxiliary/svh-a-macro.rs
+++ b/src/test/auxiliary/svh-a-macro.rs
@@ -15,12 +15,14 @@
#![crate_name = "a"]
+use std::marker::MarkerTrait;
+
macro_rules! three {
() => { 3 }
}
-pub trait U {}
-pub trait V {}
+pub trait U : MarkerTrait {}
+pub trait V : MarkerTrait {}
impl U for () {}
impl V for () {}