blob: 1d8473f01b822af6e5d0df044463726e7e2c7e60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:3:25
|
LL | format!("\u{000041}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:4:23
|
LL | format!("\u{0041}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:5:21
|
LL | format!("\u{41}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:6:20
|
LL | format!("\u{0}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:9:22
|
LL | format!("\u{0df}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:10:21
|
LL | format!("\u{df}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:13:25
|
LL | format!("\u{00211d}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:14:23
|
LL | format!("\u{211d}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:17:24
|
LL | format!("\u{1f4a3}{a}");
| ^ not found in this scope
error[E0425]: cannot find value `a` in this scope
--> $DIR/unicode-escape-spans.rs:18:25
|
LL | format!("\u{10ffff}{a}");
| ^ not found in this scope
error: aborting due to 10 previous errors
For more information about this error, try `rustc --explain E0425`.
|