Skip to content

Commit de608c1

Browse files
committed
---
yaml --- r: 60083 b: refs/heads/master c: 1813ab5 h: refs/heads/master i: 60081: b0f740a 60079: 94c874d v: v3
1 parent 314aff4 commit de608c1

File tree

3 files changed

+6
-56
lines changed

3 files changed

+6
-56
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: 5a1afaf5810048e8c0c6e5160cf0bf8c323113cf
2+
refs/heads/master: 1813ab594da579bf20ba84664c3aaea30445a928
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
55
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589

trunk/src/test/run-pass/borrowck-scope-of-deref-issue-4666.rs

Lines changed: 0 additions & 50 deletions
This file was deleted.

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)