Skip to content

Commit 0c58eec

Browse files
committed
Update references to closed issue
Issue rust-lang#28979 was closed with a link to rust-lang#55467.
1 parent fb86d60 commit 0c58eec

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

src/doc/unstable-book/src/language-features/non-ascii-idents.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# `non_ascii_idents`
22

3-
The tracking issue for this feature is: [#28979]
3+
The tracking issue for this feature is: [#55467]
44

5-
[#28979]: https://github.com/rust-lang/rust/issues/28979
5+
[#55467]: https://github.com/rust-lang/rust/issues/55467
66

77
------------------------
88

src/libsyntax/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ declare_features! (
111111
(active, concat_idents, "1.0.0", Some(29599), None),
112112
(active, link_args, "1.0.0", Some(29596), None),
113113
(active, log_syntax, "1.0.0", Some(29598), None),
114-
(active, non_ascii_idents, "1.0.0", Some(28979), None),
114+
(active, non_ascii_idents, "1.0.0", Some(55467), None),
115115
(active, plugin_registrar, "1.0.0", Some(29597), None),
116116
(active, thread_local, "1.0.0", Some(29594), None),
117117
(active, trace_macros, "1.0.0", Some(29598), None),

src/test/ui/feature-gates/feature-gate-non_ascii_idents.stderr

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,100 @@
1-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
1+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
22
--> $DIR/feature-gate-non_ascii_idents.rs:1:22
33
|
44
LL | extern crate core as bäz; //~ ERROR non-ascii idents
55
| ^^^
66
|
77
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
88

9-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
9+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
1010
--> $DIR/feature-gate-non_ascii_idents.rs:3:5
1111
|
1212
LL | use föö::bar; //~ ERROR non-ascii idents
1313
| ^^^
1414
|
1515
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
1616

17-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
17+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
1818
--> $DIR/feature-gate-non_ascii_idents.rs:5:5
1919
|
2020
LL | mod föö { //~ ERROR non-ascii idents
2121
| ^^^
2222
|
2323
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
2424

25-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
25+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2626
--> $DIR/feature-gate-non_ascii_idents.rs:9:4
2727
|
2828
LL | fn bär( //~ ERROR non-ascii idents
2929
| ^^^
3030
|
3131
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
3232

33-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
33+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
3434
--> $DIR/feature-gate-non_ascii_idents.rs:10:5
3535
|
3636
LL | bäz: isize //~ ERROR non-ascii idents
3737
| ^^^
3838
|
3939
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
4040

41-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
41+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
4242
--> $DIR/feature-gate-non_ascii_idents.rs:12:9
4343
|
4444
LL | let _ö: isize; //~ ERROR non-ascii idents
4545
| ^^
4646
|
4747
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
4848

49-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
49+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
5050
--> $DIR/feature-gate-non_ascii_idents.rs:15:10
5151
|
5252
LL | (_ä, _) => {} //~ ERROR non-ascii idents
5353
| ^^
5454
|
5555
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
5656

57-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
57+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
5858
--> $DIR/feature-gate-non_ascii_idents.rs:19:8
5959
|
6060
LL | struct Föö { //~ ERROR non-ascii idents
6161
| ^^^
6262
|
6363
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
6464

65-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
65+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
6666
--> $DIR/feature-gate-non_ascii_idents.rs:20:5
6767
|
6868
LL | föö: isize //~ ERROR non-ascii idents
6969
| ^^^
7070
|
7171
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
7272

73-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
73+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
7474
--> $DIR/feature-gate-non_ascii_idents.rs:23:6
7575
|
7676
LL | enum Bär { //~ ERROR non-ascii idents
7777
| ^^^
7878
|
7979
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
8080

81-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
81+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
8282
--> $DIR/feature-gate-non_ascii_idents.rs:24:5
8383
|
8484
LL | Bäz { //~ ERROR non-ascii idents
8585
| ^^^
8686
|
8787
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
8888

89-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
89+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
9090
--> $DIR/feature-gate-non_ascii_idents.rs:25:9
9191
|
9292
LL | qüx: isize //~ ERROR non-ascii idents
9393
| ^^^
9494
|
9595
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
9696

97-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
97+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
9898
--> $DIR/feature-gate-non_ascii_idents.rs:30:8
9999
|
100100
LL | fn qüx(); //~ ERROR non-ascii idents

src/test/ui/imports/local-modularized-tricky-fail-2.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
1+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
22
--> $DIR/local-modularized-tricky-fail-2.rs:20:32
33
|
44
LL | exported!();
@@ -9,7 +9,7 @@ LL | () => ( struct Б; ) //~ ERROR non-ascii idents are not ful
99
|
1010
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
1111

12-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
12+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
1313
--> $DIR/local-modularized-tricky-fail-2.rs:36:24
1414
|
1515
LL | panic!();
@@ -20,7 +20,7 @@ LL | () => ( struct Г; ) //~ ERROR non-ascii idents are not fully suppo
2020
|
2121
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
2222

23-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
23+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2424
--> $DIR/local-modularized-tricky-fail-2.rs:46:24
2525
|
2626
LL | include!();

src/test/ui/utf8_idents.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
1+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
22
--> $DIR/utf8_idents.rs:4:5
33
|
44
LL | 'β, //~ ERROR non-ascii idents are not fully supported
55
| ^^
66
|
77
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
88

9-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
9+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
1010
--> $DIR/utf8_idents.rs:5:5
1111
|
1212
LL | γ //~ ERROR non-ascii idents are not fully supported
1313
| ^
1414
|
1515
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
1616

17-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
17+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
1818
--> $DIR/utf8_idents.rs:9:5
1919
|
2020
LL | δ: usize //~ ERROR non-ascii idents are not fully supported
2121
| ^
2222
|
2323
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
2424

25-
error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
25+
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2626
--> $DIR/utf8_idents.rs:13:9
2727
|
2828
LL | let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported

0 commit comments

Comments
 (0)