summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/issue-99663.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/issue-99663.rs')
-rw-r--r--src/test/ui/coherence/issue-99663.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/coherence/issue-99663.rs b/src/test/ui/coherence/issue-99663.rs
deleted file mode 100644
index a2d4d398c..000000000
--- a/src/test/ui/coherence/issue-99663.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-// check-pass
-
-#![feature(type_alias_impl_trait)]
-
-struct Send<T> {
- i: InnerSend<T>,
-}
-
-type InnerSend<T> = impl Sized;
-
-fn constrain<T>() -> InnerSend<T> {
- ()
-}
-
-trait SendMustNotImplDrop {}
-
-#[allow(drop_bounds)]
-impl<T: Drop> SendMustNotImplDrop for T {}
-
-impl<T> SendMustNotImplDrop for Send<T> {}
-
-fn main() {}