Skip to content

Commit c5d354f

Browse files
committed
---
yaml --- r: 64987 b: refs/heads/snap-stage3 c: fe8ad14 h: refs/heads/master i: 64985: 3cb903f 64983: 40580fe v: v3
1 parent 9be368f commit c5d354f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 77adec9c9bba99ca77b360d944589b9f7b91625c
4+
refs/heads/snap-stage3: fe8ad14c87c9cad4490af6b5d9b87d20b7a98bb3
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/librustc/middle/typeck/coherence.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ impl CoherenceChecker {
397397
let session = self.crate_context.tcx.sess;
398398
session.span_err(
399399
self.span_of_impl(implementation_b),
400-
fmt!("conflicting implementations for trait %s",
400+
fmt!("conflicting implementations for trait `%s`",
401401
ty::item_path_str(self.crate_context.tcx,
402402
trait_def_id)));
403403
session.span_note(self.span_of_impl(implementation_a),

branches/snap-stage3/src/test/compile-fail/conflicting-implementations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern: conflicting implementations for trait Foo
11+
// error-pattern: conflicting implementations for trait `Foo`
1212
trait Foo {
1313
}
1414

0 commit comments

Comments
 (0)