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