summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-25368.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-25368.rs')
-rw-r--r--tests/ui/issues/issue-25368.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-25368.rs b/tests/ui/issues/issue-25368.rs
new file mode 100644
index 000000000..4be83457f
--- /dev/null
+++ b/tests/ui/issues/issue-25368.rs
@@ -0,0 +1,14 @@
+use std::sync::mpsc::channel;
+use std::thread::spawn;
+use std::marker::PhantomData;
+
+struct Foo<T> {foo: PhantomData<T>}
+
+fn main() {
+ let (tx, rx) =
+ channel();
+ spawn(move || {
+ tx.send(Foo{ foo: PhantomData });
+ //~^ ERROR type annotations needed
+ });
+}