summary refs log tree commit diff
path: root/src/test/ui/feature-gate-use_nested_groups.stderr
blob: 79f1d1a168f064e35d6a2d64a7d5d7f14bb783b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error: nested groups in `use` are experimental (see issue #44494)
  --> $DIR/feature-gate-use_nested_groups.rs:27:12
   |
27 | use a::{B, d::{*, g::H}};  //~ ERROR glob imports in `use` groups are experimental
   |            ^^^^^^^^^^^^
   |
   = help: add #![feature(use_nested_groups)] to the crate attributes to enable

error: glob imports in `use` groups are experimental (see issue #44494)
  --> $DIR/feature-gate-use_nested_groups.rs:27:16
   |
27 | use a::{B, d::{*, g::H}};  //~ ERROR glob imports in `use` groups are experimental
   |                ^
   |
   = help: add #![feature(use_nested_groups)] to the crate attributes to enable

error: paths in `use` groups are experimental (see issue #44494)
  --> $DIR/feature-gate-use_nested_groups.rs:27:19
   |
27 | use a::{B, d::{*, g::H}};  //~ ERROR glob imports in `use` groups are experimental
   |                   ^^^^
   |
   = help: add #![feature(use_nested_groups)] to the crate attributes to enable

error: aborting due to 3 previous errors