]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2632-const-trait-impl/tilde-const-invalid-places.stderr
Rollup merge of #103021 - GuillaumeGomez:constraint-pages, r=Amanieu
[rust.git] / src / test / ui / rfc-2632-const-trait-impl / tilde-const-invalid-places.stderr
1 error: `~const` is not allowed here
2   --> $DIR/tilde-const-invalid-places.rs:9:19
3    |
4 LL | fn rpit() -> impl ~const T { S }
5    |                   ^^^^^^^^
6    |
7    = note: only allowed on bounds on functions, traits' associated types and functions, const impls and its associated functions
8
9 error: `~const` is not allowed here
10   --> $DIR/tilde-const-invalid-places.rs:12:17
11    |
12 LL | fn apit(_: impl ~const T) {}
13    |                 ^^^^^^^^
14    |
15    = note: only allowed on bounds on functions, traits' associated types and functions, const impls and its associated functions
16
17 error: `~const` is not allowed here
18   --> $DIR/tilde-const-invalid-places.rs:15:50
19    |
20 LL | fn rpit_assoc_bound() -> impl IntoIterator<Item: ~const T> { Some(S) }
21    |                                                  ^^^^^^^^
22    |
23    = note: only allowed on bounds on functions, traits' associated types and functions, const impls and its associated functions
24
25 error: `~const` is not allowed here
26   --> $DIR/tilde-const-invalid-places.rs:18:48
27    |
28 LL | fn apit_assoc_bound(_: impl IntoIterator<Item: ~const T>) {}
29    |                                                ^^^^^^^^
30    |
31    = note: only allowed on bounds on functions, traits' associated types and functions, const impls and its associated functions
32
33 error: `~const` and `?` are mutually exclusive
34   --> $DIR/tilde-const-invalid-places.rs:21:25
35    |
36 LL | struct TildeQuestion<T: ~const ?Sized>(std::marker::PhantomData<T>);
37    |                         ^^^^^^^^^^^^^
38
39 error: aborting due to 5 previous errors
40