Skip to content

Commit f10711f

Browse files
committed
---
yaml --- r: 15837 b: refs/heads/try c: 21fc3af h: refs/heads/master i: 15835: 024001e v: v3
1 parent 5f00f89 commit f10711f

19 files changed

+19
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 9f8d2b97d3b37da4a77db3a7d4ad8bfa4ccf136e
5+
refs/heads/try: 21fc3af0315202718a16acee35b56710407e3a05
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/test/compile-fail/borrowck-lend-args.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn borrow(_v: &int) {}

branches/try/src/test/compile-fail/borrowck-lend-flow.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
// Note: the borrowck analysis is currently flow-insensitive.

branches/try/src/test/compile-fail/borrowck-loan-blocks-move-cc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn borrow(v: &int, f: fn(x: &int)) {

branches/try/src/test/compile-fail/borrowck-loan-blocks-move.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn take(-_v: ~int) {

branches/try/src/test/compile-fail/borrowck-loan-blocks-mut-uniq.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn borrow(v: &int, f: fn(x: &int)) {

branches/try/src/test/compile-fail/borrowck-loan-vec-content.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
// Here we check that it is allowed to lend out an element of a

branches/try/src/test/compile-fail/borrowck-pat-enum-in-box.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn match_imm_box(v: &const @option<int>) -> int {

branches/try/src/test/compile-fail/borrowck-pat-enum.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn match_ref(&&v: option<int>) -> int {

branches/try/src/test/compile-fail/borrowck-pat-reassign-binding.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23
// xfail-pretty -- comments are infaithfully preserved
34

branches/try/src/test/compile-fail/borrowck-pat-reassign-sometimes-binding.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23
// xfail-pretty -- comments are infaithfully preserved
34

branches/try/src/test/compile-fail/borrowck-uniq-via-box.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn borrow(_v: &int) {}

branches/try/src/test/compile-fail/borrowck-uniq-via-lend.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn borrow(_v: &int) {}

branches/try/src/test/compile-fail/borrowck-uniq-via-ref.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23
fn borrow(_v: &int) {}
34

branches/try/src/test/run-pass/borrowck-pat-reassign-no-binding.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23

34
fn main() {

branches/try/src/test/run-pass/borrowck-preserve-box-in-field.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23
// exec-env:RUST_POISON_ON_FREE=1
34

branches/try/src/test/run-pass/borrowck-preserve-box-in-uniq.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23
// exec-env:RUST_POISON_ON_FREE=1
34

branches/try/src/test/run-pass/borrowck-preserve-box.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23
// exec-env:RUST_POISON_ON_FREE=1
34

branches/try/src/test/run-pass/borrowck-preserve-cond-box.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-fast (compile-flags unsupported on windows)
12
// compile-flags:--borrowck=err
23
// exec-env:RUST_POISON_ON_FREE=1
34

0 commit comments

Comments
 (0)