Files
rust/tests/ui/use/use-from-trait-xc.stderr

83 lines
3.0 KiB
Plaintext
Raw Normal View History

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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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[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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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[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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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;
| ^^^ `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;
| ^^^ `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;
| ^^^ `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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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;
| ^^^ private struct
|
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;
| ^^^ private struct
|
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
Some errors have detailed explanations: E0432, E0603, E0658.
For more information about an error, try `rustc --explain E0432`.