Skip to content

Commit f9ca0c8

Browse files
committed
Add xfailed test for #3979
1 parent 6430517 commit f9ca0c8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/test/run-pass/issue-3979.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// xfail-test
2+
trait Positioned {
3+
fn SetX(int);
4+
}
5+
6+
trait Movable: Positioned {
7+
fn translate(dx: int) {
8+
self.SetX(self.X() + dx);
9+
}
10+
}
11+
12+
fn main() {}

0 commit comments

Comments
 (0)