1
1
error: `default` is only allowed on items in trait impls
2
- --> $DIR/trait-item-with-defaultness -fail-semantic.rs:6:5
2
+ --> $DIR/defaultness-invalid-places -fail-semantic.rs:6:5
3
3
|
4
4
LL | default const A: u8;
5
5
| -------^^^^^^^^^^^^^
6
6
| |
7
7
| `default` because of this
8
8
9
9
error: `default` is only allowed on items in trait impls
10
- --> $DIR/trait-item-with-defaultness -fail-semantic.rs:7:5
10
+ --> $DIR/defaultness-invalid-places -fail-semantic.rs:7:5
11
11
|
12
12
LL | default const B: u8 = 0;
13
13
| -------^^^^^^^^^^^^^^^^^
14
14
| |
15
15
| `default` because of this
16
16
17
17
error: `default` is only allowed on items in trait impls
18
- --> $DIR/trait-item-with-defaultness -fail-semantic.rs:8:5
18
+ --> $DIR/defaultness-invalid-places -fail-semantic.rs:8:5
19
19
|
20
20
LL | default type D;
21
21
| -------^^^^^^^^
22
22
| |
23
23
| `default` because of this
24
24
25
25
error: `default` is only allowed on items in trait impls
26
- --> $DIR/trait-item-with-defaultness -fail-semantic.rs:9:5
26
+ --> $DIR/defaultness-invalid-places -fail-semantic.rs:9:5
27
27
|
28
28
LL | default type C: Ord;
29
29
| -------^^^^^^^^^^^^^
30
30
| |
31
31
| `default` because of this
32
32
33
33
error: `default` is only allowed on items in trait impls
34
- --> $DIR/trait-item-with-defaultness -fail-semantic.rs:10:5
34
+ --> $DIR/defaultness-invalid-places -fail-semantic.rs:10:5
35
35
|
36
36
LL | default fn f1();
37
37
| -------^^^^^^^^^
38
38
| |
39
39
| `default` because of this
40
40
41
41
error: `default` is only allowed on items in trait impls
42
- --> $DIR/trait-item-with-defaultness -fail-semantic.rs:11:5
42
+ --> $DIR/defaultness-invalid-places -fail-semantic.rs:11:5
43
43
|
44
44
LL | default fn f2() {}
45
45
| -------^^^^^^^^
46
46
| |
47
47
| `default` because of this
48
48
49
+ error: `default` is only allowed on items in trait impls
50
+ --> $DIR/defaultness-invalid-places-fail-semantic.rs:14:1
51
+ |
52
+ LL | default const E: u8 = 0;
53
+ | -------^^^^^^^^^^^^^^^^^
54
+ | |
55
+ | `default` because of this
56
+
57
+ error: `default` is only allowed on items in trait impls
58
+ --> $DIR/defaultness-invalid-places-fail-semantic.rs:15:1
59
+ |
60
+ LL | default type F = ();
61
+ | -------^^^^^^^^^^^^^
62
+ | |
63
+ | `default` because of this
64
+
65
+ error: `default` is only allowed on items in trait impls
66
+ --> $DIR/defaultness-invalid-places-fail-semantic.rs:16:1
67
+ |
68
+ LL | default fn h() {}
69
+ | -------^^^^^^^
70
+ | |
71
+ | `default` because of this
72
+
49
73
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
50
- --> $DIR/trait-item-with-defaultness -fail-semantic.rs:1:12
74
+ --> $DIR/defaultness-invalid-places -fail-semantic.rs:1:12
51
75
|
52
76
LL | #![feature(specialization)]
53
77
| ^^^^^^^^^^^^^^
@@ -56,5 +80,5 @@ LL | #![feature(specialization)]
56
80
= help: consider using `min_specialization` instead, which is more stable and complete
57
81
= note: `#[warn(incomplete_features)]` on by default
58
82
59
- error: aborting due to 6 previous errors; 1 warning emitted
83
+ error: aborting due to 9 previous errors; 1 warning emitted
60
84
0 commit comments