]> git.lizzy.rs Git - rust.git/blob - src/test/ui/xcrate/xcrate-private-by-default.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / xcrate / xcrate-private-by-default.stderr
1 error[E0603]: static `j` is private
2   --> $DIR/xcrate-private-by-default.rs:23:29
3    |
4 LL |     static_priv_by_default::j;
5    |                             ^
6
7 error[E0603]: function `k` is private
8   --> $DIR/xcrate-private-by-default.rs:25:29
9    |
10 LL |     static_priv_by_default::k;
11    |                             ^
12
13 error[E0603]: unit struct `l` is private
14   --> $DIR/xcrate-private-by-default.rs:27:29
15    |
16 LL |     static_priv_by_default::l;
17    |                             ^
18
19 error[E0603]: enum `m` is private
20   --> $DIR/xcrate-private-by-default.rs:29:35
21    |
22 LL |     foo::<static_priv_by_default::m>();
23    |                                   ^
24
25 error[E0603]: type alias `n` is private
26   --> $DIR/xcrate-private-by-default.rs:31:35
27    |
28 LL |     foo::<static_priv_by_default::n>();
29    |                                   ^
30
31 error[E0603]: module `foo` is private
32   --> $DIR/xcrate-private-by-default.rs:35:29
33    |
34 LL |     static_priv_by_default::foo::a;
35    |                             ^^^
36
37 error[E0603]: module `foo` is private
38   --> $DIR/xcrate-private-by-default.rs:37:29
39    |
40 LL |     static_priv_by_default::foo::b;
41    |                             ^^^
42
43 error[E0603]: module `foo` is private
44   --> $DIR/xcrate-private-by-default.rs:39:29
45    |
46 LL |     static_priv_by_default::foo::c;
47    |                             ^^^
48
49 error[E0603]: module `foo` is private
50   --> $DIR/xcrate-private-by-default.rs:41:35
51    |
52 LL |     foo::<static_priv_by_default::foo::d>();
53    |                                   ^^^
54
55 error[E0603]: module `foo` is private
56   --> $DIR/xcrate-private-by-default.rs:43:35
57    |
58 LL |     foo::<static_priv_by_default::foo::e>();
59    |                                   ^^^
60
61 error: aborting due to 10 previous errors
62
63 For more information about this error, try `rustc --explain E0603`.