summaryrefslogtreecommitdiffstats
path: root/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-well-formed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/trivial-bounds/trivial-bounds-inconsistent-well-formed.rs')
-rw-r--r--src/test/ui/trivial-bounds/trivial-bounds-inconsistent-well-formed.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-well-formed.rs b/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-well-formed.rs
deleted file mode 100644
index 9efa22b10..000000000
--- a/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-well-formed.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// run-pass
-// Test that inconsistent bounds are used in well-formedness checks
-#![feature(trivial_bounds)]
-
-use std::fmt::Debug;
-
-pub fn foo() where Vec<str>: Debug, str: Copy {
- //~^ WARNING Debug does not depend on any type or lifetime
- //~| WARNING Copy does not depend on any type or lifetime
- let x = vec![*"1"];
- println!("{:?}", x);
-}
-
-fn main() {}