summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-25368.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-25368.stderr')
-rw-r--r--src/test/ui/issues/issue-25368.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/issues/issue-25368.stderr b/src/test/ui/issues/issue-25368.stderr
deleted file mode 100644
index e6ed3aac7..000000000
--- a/src/test/ui/issues/issue-25368.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error[E0282]: type annotations needed
- --> $DIR/issue-25368.rs:11:27
- |
-LL | tx.send(Foo{ foo: PhantomData });
- | ^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `PhantomData`
- |
-help: consider specifying the generic argument
- |
-LL | tx.send(Foo{ foo: PhantomData::<T> });
- | +++++
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0282`.