File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: b6f9295654b8bcad0c3cdd0651741082cedd6e75
2
+ refs/heads/master: 37becd887e74383cafd2930a87dfbb8f19c5af15
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
5
5
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589
Original file line number Diff line number Diff line change 10
10
11
11
//xfail-test
12
12
13
- // Currently failing with an ICE in trans. (FIXME: #2794 )
13
+ // Currently failing with an ICE in trans. (FIXME: #4350 )
14
14
15
15
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 }
19
19
}
20
20
21
21
impl Cat for int {
22
- fn meow ( ) -> bool {
22
+ fn meow ( & self ) -> bool {
23
23
self . scratch ( )
24
24
}
25
25
}
You can’t perform that action at this time.
0 commit comments