rust/tests/ui/error-codes
Esteban Küber 2c83c99058 More information for fully-qualified suggestion when there are multiple impls
```
error[E0790]: cannot call associated function on trait without specifying the corresponding `impl` type
  --> $DIR/E0283.rs:30:21
   |
LL |     fn create() -> u32;
   |     ------------------- `Coroutine::create` defined here
...
LL |     let cont: u32 = Coroutine::create();
   |                     ^^^^^^^^^^^^^^^^^^^ cannot call associated function of trait
   |
help: use a fully-qualified path to a specific available implementation
   |
LL |     let cont: u32 = <Impl as Coroutine>::create();
   |                     ++++++++          +
LL |     let cont: u32 = <AnotherImpl as Coroutine>::create();
   |                     +++++++++++++++          +
```
2024-08-02 03:22:56 +00:00
..
2024-07-24 08:46:52 +02:00
2024-04-14 09:42:53 -04:00
2024-07-22 22:04:49 +00:00
2024-06-21 19:00:18 -04:00
2024-01-05 09:30:27 +00:00
2024-01-05 10:00:59 +00:00
2023-12-15 16:12:27 +00:00
2024-01-11 09:03:26 +00:00
2024-05-20 11:13:10 -04:00
2024-05-20 11:13:10 -04:00
2023-12-15 16:12:27 +00:00
2023-10-20 21:10:38 +00:00
2024-06-21 19:00:18 -04:00
2024-06-25 17:22:22 +02:00
2023-11-16 17:00:23 +00:00
2023-12-20 22:53:56 -05:00
2024-03-20 17:29:58 +00:00
2024-01-13 12:46:58 -05:00