]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/coherence/impl[t]-foreign[local]-for-t.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / src / test / ui / coherence / impl[t]-foreign[local]-for-t.rs
diff --git a/src/test/ui/coherence/impl[t]-foreign[local]-for-t.rs b/src/test/ui/coherence/impl[t]-foreign[local]-for-t.rs
deleted file mode 100644 (file)
index eed3a4b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// compile-flags:--crate-name=test
-// aux-build:coherence_lib.rs
-
-extern crate coherence_lib as lib;
-use lib::*;
-use std::rc::Rc;
-
-struct Local;
-
-impl<T> Remote1<Local> for T {
-    //~^ ERROR type parameter `T` must be covered by another type
-}
-
-fn main() {}