Skip to content

Commit 28d0e5f

Browse files
committed
---
yaml --- r: 12831 b: refs/heads/master c: 21fc3af h: refs/heads/master i: 12829: 762ed45 12827: 17c760e 12823: e8c3906 12815: 8552dd5 12799: 4fb7e71 v: v3
1 parent da185eb commit 28d0e5f

19 files changed

+19
-1
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: 9f8d2b97d3b37da4a77db3a7d4ad8bfa4ccf136e
2+
refs/heads/master: 21fc3af0315202718a16acee35b56710407e3a05
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/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) {}

trunk/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.

trunk/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)) {

trunk/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) {

trunk/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)) {

trunk/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

trunk/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 {

trunk/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 {

trunk/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

trunk/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

trunk/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) {}

trunk/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) {}

trunk/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

trunk/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() {

trunk/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

trunk/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

trunk/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

trunk/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)