2022-06-12 10:46:57 -05:00
|
|
|
error[E0790]: cannot call associated function on trait without specifying the corresponding `impl` type
|
|
|
|
--> $DIR/E0790.rs:17:9
|
|
|
|
|
|
|
|
|
LL | fn my_fn();
|
|
|
|
| ----------- `MyTrait::my_fn` defined here
|
|
|
|
...
|
|
|
|
LL | MyTrait::my_fn();
|
2024-01-23 20:52:29 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^ cannot call associated function of trait
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
|
|
|
help: use the fully-qualified path to the only available implementation
|
|
|
|
|
|
2022-10-04 12:30:25 -05:00
|
|
|
LL | <MyStruct as MyTrait>::my_fn();
|
|
|
|
| ++++++++++++ +
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
|
|
error[E0790]: cannot refer to the associated constant on trait without specifying the corresponding `impl` type
|
|
|
|
--> $DIR/E0790.rs:21:17
|
|
|
|
|
|
|
|
|
LL | const MY_ASSOC_CONST: ();
|
|
|
|
| ------------------------- `MyTrait::MY_ASSOC_CONST` defined here
|
|
|
|
...
|
|
|
|
LL | let _ = MyTrait::MY_ASSOC_CONST;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ cannot refer to the associated constant of trait
|
|
|
|
|
|
|
|
|
help: use the fully-qualified path to the only available implementation
|
|
|
|
|
|
2022-10-04 12:30:25 -05:00
|
|
|
LL | let _ = <MyStruct as MyTrait>::MY_ASSOC_CONST;
|
|
|
|
| ++++++++++++ +
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
|
|
error[E0790]: cannot call associated function on trait without specifying the corresponding `impl` type
|
|
|
|
--> $DIR/E0790.rs:26:5
|
|
|
|
|
|
|
|
|
LL | fn my_fn();
|
|
|
|
| ----------- `MyTrait::my_fn` defined here
|
|
|
|
...
|
|
|
|
LL | inner::MyTrait::my_fn();
|
2024-01-23 20:52:29 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ cannot call associated function of trait
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
|
|
|
help: use the fully-qualified path to the only available implementation
|
|
|
|
|
|
2022-11-12 14:03:20 -06:00
|
|
|
LL | <MyStruct as inner::MyTrait>::my_fn();
|
|
|
|
| ++++++++++++ +
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
|
|
error[E0790]: cannot refer to the associated constant on trait without specifying the corresponding `impl` type
|
|
|
|
--> $DIR/E0790.rs:30:13
|
|
|
|
|
|
|
|
|
LL | const MY_ASSOC_CONST: ();
|
|
|
|
| ------------------------- `MyTrait::MY_ASSOC_CONST` defined here
|
|
|
|
...
|
|
|
|
LL | let _ = inner::MyTrait::MY_ASSOC_CONST;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot refer to the associated constant of trait
|
|
|
|
|
|
|
|
|
help: use the fully-qualified path to the only available implementation
|
|
|
|
|
|
2022-11-12 14:03:20 -06:00
|
|
|
LL | let _ = <MyStruct as inner::MyTrait>::MY_ASSOC_CONST;
|
|
|
|
| ++++++++++++ +
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
|
|
error[E0790]: cannot call associated function on trait without specifying the corresponding `impl` type
|
|
|
|
--> $DIR/E0790.rs:50:5
|
|
|
|
|
|
|
|
|
LL | fn my_fn();
|
|
|
|
| ----------- `MyTrait2::my_fn` defined here
|
|
|
|
...
|
|
|
|
LL | MyTrait2::my_fn();
|
2024-01-23 20:52:29 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ cannot call associated function of trait
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
2024-08-01 21:39:37 -05:00
|
|
|
help: use a fully-qualified path to one of the available implementations
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
2024-08-01 21:39:37 -05:00
|
|
|
LL | <Impl1 as MyTrait2>::my_fn();
|
|
|
|
| +++++++++ +
|
|
|
|
LL | <Impl2 as MyTrait2>::my_fn();
|
|
|
|
| +++++++++ +
|
2022-06-12 10:46:57 -05:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0790`.
|