2024-12-25 14:54:49 +08:00
|
|
|
error[E0658]: `use` associated items of traits is unstable
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:5:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | use use_from_trait_xc::Trait::foo;
|
2024-12-25 14:54:49 +08:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= note: see issue #134691 <https://github.com/rust-lang/rust/issues/134691> for more information
|
|
|
|
|
= help: add `#![feature(import_trait_associated_functions)]` to the crate attributes to enable
|
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2025-03-19 16:11:45 +03:00
|
|
|
error[E0658]: `use` associated items of traits is unstable
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:8:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | use use_from_trait_xc::Trait::Assoc;
|
2025-03-19 16:11:45 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= note: see issue #134691 <https://github.com/rust-lang/rust/issues/134691> for more information
|
|
|
|
|
= help: add `#![feature(import_trait_associated_functions)]` to the crate attributes to enable
|
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2024-12-25 14:54:49 +08:00
|
|
|
error[E0658]: `use` associated items of traits is unstable
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:11:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | use use_from_trait_xc::Trait::CONST;
|
2024-12-25 14:54:49 +08:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= note: see issue #134691 <https://github.com/rust-lang/rust/issues/134691> for more information
|
|
|
|
|
= help: add `#![feature(import_trait_associated_functions)]` to the crate attributes to enable
|
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `use_from_trait_xc::Foo`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:14:24
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use use_from_trait_xc::Foo::new;
|
2019-04-01 16:22:12 -04:00
|
|
|
| ^^^ `Foo` is a struct, not a module
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `use_from_trait_xc::Foo`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:17:24
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use use_from_trait_xc::Foo::C;
|
2019-04-01 16:22:12 -04:00
|
|
|
| ^^^ `Foo` is a struct, not a module
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `use_from_trait_xc::Bar`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:20:24
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | use use_from_trait_xc::Bar::new as bnew;
|
2019-04-01 16:22:12 -04:00
|
|
|
| ^^^ `Bar` is a struct, not a module
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `use_from_trait_xc::Baz::new`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:23:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | use use_from_trait_xc::Baz::new as baznew;
|
2021-09-25 02:27:00 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `new` in `sub::Baz`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0603]: struct `Foo` is private
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:14:24
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use use_from_trait_xc::Foo::new;
|
2020-03-22 15:36:54 -07:00
|
|
|
| ^^^ private struct
|
2020-01-12 16:04:03 +03:00
|
|
|
|
|
|
|
|
|
note: the struct `Foo` is defined here
|
|
|
|
|
--> $DIR/auxiliary/use-from-trait-xc.rs:9:1
|
|
|
|
|
|
|
|
|
|
|
LL | struct Foo;
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0603]: struct `Foo` is private
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/use-from-trait-xc.rs:17:24
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use use_from_trait_xc::Foo::C;
|
2020-03-22 15:36:54 -07:00
|
|
|
| ^^^ private struct
|
2020-01-12 16:04:03 +03:00
|
|
|
|
|
|
|
|
|
note: the struct `Foo` is defined here
|
|
|
|
|
--> $DIR/auxiliary/use-from-trait-xc.rs:9:1
|
|
|
|
|
|
|
|
|
|
|
LL | struct Foo;
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
|
|
|
|
|
2025-03-19 16:11:45 +03:00
|
|
|
Some errors have detailed explanations: E0432, E0603, E0658.
|
|
|
|
|
For more information about an error, try `rustc --explain E0432`.
|