about summary refs log tree commit diff
path: root/tests/ui/impl-trait/fallback_inference.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/impl-trait/fallback_inference.stderr')
-rw-r--r--tests/ui/impl-trait/fallback_inference.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/impl-trait/fallback_inference.stderr b/tests/ui/impl-trait/fallback_inference.stderr
new file mode 100644
index 00000000000..4ac3c238fe9
--- /dev/null
+++ b/tests/ui/impl-trait/fallback_inference.stderr
@@ -0,0 +1,14 @@
+error[E0282]: type annotations needed
+  --> $DIR/fallback_inference.rs:4:5
+   |
+LL |     PhantomData
+   |     ^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `PhantomData`
+   |
+help: consider specifying the generic argument
+   |
+LL |     PhantomData::<T>
+   |                +++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0282`.