@@ -4,6 +4,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
4
4
LL | type NonNullU32 = pattern_type!(u32 is 1..);
5
5
| ^^^^^^^^^^^^
6
6
|
7
+ = note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
7
8
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
8
9
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
9
10
@@ -13,6 +14,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
13
14
LL | type Percent = pattern_type!(u32 is 0..=100);
14
15
| ^^^^^^^^^^^^
15
16
|
17
+ = note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
16
18
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
17
19
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
18
20
@@ -22,6 +24,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
22
24
LL | type Negative = pattern_type!(i32 is ..=0);
23
25
| ^^^^^^^^^^^^
24
26
|
27
+ = note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
25
28
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
26
29
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
27
30
@@ -31,6 +34,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
31
34
LL | type Positive = pattern_type!(i32 is 0..);
32
35
| ^^^^^^^^^^^^
33
36
|
37
+ = note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
34
38
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
35
39
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
36
40
@@ -40,6 +44,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
40
44
LL | type Always = pattern_type!(Option<u32> is Some(_));
41
45
| ^^^^^^^^^^^^
42
46
|
47
+ = note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
43
48
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
44
49
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
45
50
0 commit comments