]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use/use-from-trait-xc.stderr
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / use / use-from-trait-xc.stderr
1 error[E0253]: `foo` is not directly importable
2   --> $DIR/use-from-trait-xc.rs:5:5
3    |
4 LL | use use_from_trait_xc::Trait::foo;
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot be imported directly
6
7 error[E0253]: `Assoc` is not directly importable
8   --> $DIR/use-from-trait-xc.rs:8:5
9    |
10 LL | use use_from_trait_xc::Trait::Assoc;
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot be imported directly
12
13 error[E0253]: `CONST` is not directly importable
14   --> $DIR/use-from-trait-xc.rs:11:5
15    |
16 LL | use use_from_trait_xc::Trait::CONST;
17    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot be imported directly
18
19 error[E0432]: unresolved import `use_from_trait_xc::Foo`
20   --> $DIR/use-from-trait-xc.rs:14:24
21    |
22 LL | use use_from_trait_xc::Foo::new;
23    |                        ^^^ `Foo` is a struct, not a module
24
25 error[E0432]: unresolved import `use_from_trait_xc::Foo`
26   --> $DIR/use-from-trait-xc.rs:17:24
27    |
28 LL | use use_from_trait_xc::Foo::C;
29    |                        ^^^ `Foo` is a struct, not a module
30
31 error[E0432]: unresolved import `use_from_trait_xc::Bar`
32   --> $DIR/use-from-trait-xc.rs:20:24
33    |
34 LL | use use_from_trait_xc::Bar::new as bnew;
35    |                        ^^^ `Bar` is a struct, not a module
36
37 error[E0432]: unresolved import `use_from_trait_xc::Baz::new`
38   --> $DIR/use-from-trait-xc.rs:23:5
39    |
40 LL | use use_from_trait_xc::Baz::new as baznew;
41    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `new` in `Baz`
42
43 error[E0603]: struct `Foo` is private
44   --> $DIR/use-from-trait-xc.rs:14:24
45    |
46 LL | use use_from_trait_xc::Foo::new;
47    |                        ^^^ private struct
48    |
49 note: the struct `Foo` is defined here
50   --> $DIR/auxiliary/use-from-trait-xc.rs:9:1
51    |
52 LL | struct Foo;
53    | ^^^^^^^^^^^
54
55 error[E0603]: struct `Foo` is private
56   --> $DIR/use-from-trait-xc.rs:17:24
57    |
58 LL | use use_from_trait_xc::Foo::C;
59    |                        ^^^ private struct
60    |
61 note: the struct `Foo` is defined here
62   --> $DIR/auxiliary/use-from-trait-xc.rs:9:1
63    |
64 LL | struct Foo;
65    | ^^^^^^^^^^^
66
67 error: aborting due to 9 previous errors
68
69 Some errors have detailed explanations: E0253, E0432, E0603.
70 For more information about an error, try `rustc --explain E0253`.