aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/clone-with-exterior.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/clone-with-exterior.rs')
-rw-r--r--src/test/run-pass/clone-with-exterior.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/clone-with-exterior.rs b/src/test/run-pass/clone-with-exterior.rs
index e97c409d..99c319c2 100644
--- a/src/test/run-pass/clone-with-exterior.rs
+++ b/src/test/run-pass/clone-with-exterior.rs
@@ -1,8 +1,8 @@
// xfail-boot
// xfail-stage0
fn f(@rec(int a, int b) x) {
- check (x.a == 10);
- check (x.b == 12);
+ assert (x.a == 10);
+ assert (x.b == 12);
}
fn main() {