]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-more-qualified-paths.stderr
parser will not give wrong help message for 'public'
[rust.git] / src / test / ui / feature-gates / feature-gate-more-qualified-paths.stderr
1 error[E0658]: usage of qualified paths in this context is experimental
2   --> $DIR/feature-gate-more-qualified-paths.rs:3:9
3    |
4 LL |     let <Foo as A>::Assoc { br } = StructStruct { br: 2 };
5    |         ^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #86935 <https://github.com/rust-lang/rust/issues/86935> for more information
8    = help: add `#![feature(more_qualified_paths)]` to the crate attributes to enable
9
10 error[E0658]: usage of qualified paths in this context is experimental
11   --> $DIR/feature-gate-more-qualified-paths.rs:5:13
12    |
13 LL |     let _ = <Foo as A>::Assoc { br: 2 };
14    |             ^^^^^^^^^^^^^^^^^
15    |
16    = note: see issue #86935 <https://github.com/rust-lang/rust/issues/86935> for more information
17    = help: add `#![feature(more_qualified_paths)]` to the crate attributes to enable
18
19 error[E0658]: usage of qualified paths in this context is experimental
20   --> $DIR/feature-gate-more-qualified-paths.rs:7:9
21    |
22 LL |     let <E>::V(..) = E::V(0);
23    |         ^^^^^^
24    |
25    = note: see issue #86935 <https://github.com/rust-lang/rust/issues/86935> for more information
26    = help: add `#![feature(more_qualified_paths)]` to the crate attributes to enable
27
28 error: aborting due to 3 previous errors
29
30 For more information about this error, try `rustc --explain E0658`.