diff options
Diffstat (limited to 'tests/ui/issues/issue-25368.stderr')
-rw-r--r-- | tests/ui/issues/issue-25368.stderr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-25368.stderr b/tests/ui/issues/issue-25368.stderr new file mode 100644 index 000000000..e6ed3aac7 --- /dev/null +++ b/tests/ui/issues/issue-25368.stderr @@ -0,0 +1,14 @@ +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`. |