Skip to content

Commit f35a6fa

Browse files
committed
#blessed
1 parent b9033c9 commit f35a6fa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/ui/type/pattern_types/feature-gate-pattern_types.stderr

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
44
LL | type NonNullU32 = pattern_type!(u32 is 1..);
55
| ^^^^^^^^^^^^
66
|
7+
= note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
78
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
89
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
910

@@ -13,6 +14,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
1314
LL | type Percent = pattern_type!(u32 is 0..=100);
1415
| ^^^^^^^^^^^^
1516
|
17+
= note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
1618
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
1719
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
1820

@@ -22,6 +24,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
2224
LL | type Negative = pattern_type!(i32 is ..=0);
2325
| ^^^^^^^^^^^^
2426
|
27+
= note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
2528
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
2629
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2730

@@ -31,6 +34,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
3134
LL | type Positive = pattern_type!(i32 is 0..);
3235
| ^^^^^^^^^^^^
3336
|
37+
= note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
3438
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
3539
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
3640

@@ -40,6 +44,7 @@ error[E0658]: use of unstable library feature 'core_pattern_type'
4044
LL | type Always = pattern_type!(Option<u32> is Some(_));
4145
| ^^^^^^^^^^^^
4246
|
47+
= note: see issue #123646 <https://github.com/rust-lang/rust/issues/123646> for more information
4348
= help: add `#![feature(core_pattern_type)]` to the crate attributes to enable
4449
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
4550

0 commit comments

Comments
 (0)