Skip to content

Commit 973e1d0

Browse files
committed
---
yaml --- r: 60095 b: refs/heads/master c: 37becd8 h: refs/heads/master i: 60093: aba67ce 60091: 0d71d2a 60087: 12928d5 60079: 94c874d 60063: 30baad8 60031: b40d7e5 v: v3
1 parent d6b7a54 commit 973e1d0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: b6f9295654b8bcad0c3cdd0651741082cedd6e75
2+
refs/heads/master: 37becd887e74383cafd2930a87dfbb8f19c5af15
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
55
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589

trunk/src/test/run-pass/traits-default-method-self.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010

1111
//xfail-test
1212

13-
// Currently failing with an ICE in trans. (FIXME: #2794)
13+
// Currently failing with an ICE in trans. (FIXME: #4350)
1414

1515
trait Cat {
16-
fn meow() -> bool;
17-
fn scratch() -> bool { self.purr() }
18-
fn purr() -> bool { true }
16+
fn meow(&self) -> bool;
17+
fn scratch(&self) -> bool { self.purr() }
18+
fn purr(&self) -> bool { true }
1919
}
2020

2121
impl Cat for int {
22-
fn meow() -> bool {
22+
fn meow(&self) -> bool {
2323
self.scratch()
2424
}
2525
}

0 commit comments

Comments
 (0)