summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0283.stderr
blob: b6078e302360612b8f7c218c8942345c99b57957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error[E0283]: type annotations needed
  --> $DIR/E0283.rs:30:21
   |
LL |     let cont: u32 = Generator::create();
   |                     ^^^^^^^^^^^^^^^^^ cannot infer type
   |
   = note: cannot satisfy `_: Generator`
note: required by `Generator::create`
  --> $DIR/E0283.rs:2:5
   |
LL |     fn create() -> u32;
   |     ^^^^^^^^^^^^^^^^^^^

error[E0283]: type annotations needed
  --> $DIR/E0283.rs:35:24
   |
LL |     let bar = foo_impl.into() * 1u32;
   |               ---------^^^^--
   |               |        |
   |               |        cannot infer type for type parameter `T` declared on the trait `Into`
   |               this method call resolves to `T`
   |               help: use the fully qualified path for the potential candidate: `<Impl as Into<u32>>::into(foo_impl)`
   |
   = note: cannot satisfy `Impl: Into<_>`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0283`.