You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: the feature `non_lifetime_binders` is incomplete and may not be safe to use and/or cause compiler crashes
13
-
--> $DIR/issue-112547.rs:1:12
13
+
--> $DIR/binder-defaults-112547.rs:1:12
14
14
|
15
15
LL | #![feature(non_lifetime_binders)]
16
16
| ^^^^^^^^^^^^^^^^^^^^
17
17
|
18
18
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information
19
19
= note: `#[warn(incomplete_features)]` on by default
20
20
21
-
error: aborting due to 1 previous error; 1 warning emitted
21
+
error: defaults for generic parameters are not allowed in `for<...>` binders
22
+
--> $DIR/binder-defaults-112547.rs:6:9
23
+
|
24
+
LL | for<const N: usize = {
25
+
| _________^
26
+
LL | | (||1usize)()
27
+
LL | | }> V: IntoIterator
28
+
| |_^
29
+
30
+
error: aborting due to 2 previous errors; 1 warning emitted
22
31
23
32
For more information about this error, try `rustc --explain E0412`.
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information
8
+
= note: `#[warn(incomplete_features)]` on by default
9
+
10
+
warning: the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes
= note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information
17
+
18
+
error: defaults for generic parameters are not allowed in `for<...>` binders
19
+
--> $DIR/binder-defaults-119489.rs:7:9
20
+
|
21
+
LL | for<T = (), const N: usize = 1> ():,
22
+
| ^^^^^^
23
+
24
+
error: defaults for generic parameters are not allowed in `for<...>` binders
25
+
--> $DIR/binder-defaults-119489.rs:7:17
26
+
|
27
+
LL | for<T = (), const N: usize = 1> ():,
28
+
| ^^^^^^^^^^^^^^^^^^
29
+
30
+
error: aborting due to 2 previous errors; 2 warnings emitted
0 commit comments