Skip to content

Commit 4ec50ae

Browse files
committed
---
yaml --- r: 24549 b: refs/heads/try2 c: cc3b6bf h: refs/heads/master i: 24547: 96b2c4e v: v3
1 parent 23b21d7 commit 4ec50ae

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 139d843dced44973742c794678b3404423f60ec4
8+
refs/heads/try2: cc3b6bf2f07aee96ab51ac4c147fbeabed3aa4ec
99
refs/heads/incoming: 05543fd04dfb3f63b453a331e239ceb1a9a219f9
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try2/src/rustc/middle/resolve3.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3647,8 +3647,7 @@ class Resolver {
36473647
NoNameDefinition {
36483648
// We failed to resolve the name. Report an error.
36493649
self.session.span_err(path.span,
3650-
#fmt("use of undeclared identifier: \
3651-
%s::%s",
3650+
#fmt("unresolved name: %s::%s",
36523651
*(*self.atom_table).atoms_to_str
36533652
((*module_path_atoms).get()),
36543653
*(*self.atom_table).atom_to_str
@@ -3700,8 +3699,7 @@ class Resolver {
37003699
NoNameDefinition {
37013700
// We failed to resolve the name. Report an error.
37023701
self.session.span_err(path.span,
3703-
#fmt("use of undeclared identifier: \
3704-
%s::%s",
3702+
#fmt("unresolved name: %s::%s",
37053703
*(*self.atom_table).atoms_to_str
37063704
((*module_path_atoms).get()),
37073705
*(*self.atom_table).atom_to_str
@@ -3806,8 +3804,7 @@ class Resolver {
38063804
}
38073805
none {
38083806
self.session.span_err(expr.span,
3809-
#fmt("use of undeclared \
3810-
identifier '%s'",
3807+
#fmt("unresolved name: %s",
38113808
connect(path.idents.map(|x| *x),
38123809
"::")));
38133810
}

0 commit comments

Comments
 (0)