about summary refs log tree commit diff
path: root/src/test/ui/svh/svh-change-trait-bound.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/svh/svh-change-trait-bound.rs')
-rw-r--r--src/test/ui/svh/svh-change-trait-bound.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/svh/svh-change-trait-bound.rs b/src/test/ui/svh/svh-change-trait-bound.rs
deleted file mode 100644
index a4ba06eaf2e..00000000000
--- a/src/test/ui/svh/svh-change-trait-bound.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// note that these aux-build directives must be in this order
-// aux-build:svh-a-base.rs
-// aux-build:svh-b.rs
-// aux-build:svh-a-change-trait-bound.rs
-// normalize-stderr-test: "(crate `(\w+)`:) .*" -> "$1 $$PATH_$2"
-
-extern crate a;
-extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
-
-fn main() {
-    b::foo()
-}