Skip to content

Commit 2fc9e84

Browse files
committed
---
yaml --- r: 120062 b: refs/heads/dist-snap c: 255908a h: refs/heads/master v: v3
1 parent 668600d commit 2fc9e84

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 1813e5aa1a03b0596b8de7abd1af31edf5d6098f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: 104e285eb8f848867c2666765e2aa8221e8a97d1
9+
refs/heads/dist-snap: 255908ac953acb868ba7ee0c0cbfb8ae0cc3e44d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/test/compile-fail/drop-on-non-struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
type Foo = Vec<u8>;
1515

16-
impl Drop for Foo { //~ ERROR conflicting implementations
16+
impl Drop for Foo {
1717
//~^ ERROR cannot provide an extension implementation
1818
//~^^ ERROR multiple applicable methods
1919
fn drop(&mut self) {

branches/dist-snap/src/test/compile-fail/fully-qualified-type-name1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
fn main() {
1414
let x: Option<uint>;
1515
x = 5;
16-
//~^ ERROR mismatched types: expected `std::option::Option<uint>`
16+
//~^ ERROR mismatched types: expected `core::option::Option<uint>`
1717
}

branches/dist-snap/src/test/compile-fail/fully-qualified-type-name4.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use std::option::Option;
1414

1515
fn bar(x: uint) -> Option<uint> {
1616
return x;
17-
//~^ ERROR mismatched types: expected `std::option::Option<uint>`
17+
//~^ ERROR mismatched types: expected `core::option::Option<uint>`
1818
}
1919

2020
fn main() {

branches/dist-snap/src/test/compile-fail/issue-13466.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn main() {
1616
// tricked into looking up a non-existing second type parameter.
1717
let _x: uint = match Some(1u) {
1818
//~^ ERROR mismatched types: expected `uint` but found `<generic #0>`
19-
Ok(u) => u, //~ ERROR mismatched types: expected `std::option::Option<uint>`
20-
Err(e) => fail!(e) //~ ERROR mismatched types: expected `std::option::Option<uint>`
19+
Ok(u) => u, //~ ERROR mismatched types: expected `core::option::Option<uint>`
20+
Err(e) => fail!(e) //~ ERROR mismatched types: expected `core::option::Option<uint>`
2121
};
2222
}

branches/dist-snap/src/test/compile-fail/issue-3680.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
fn main() {
1212
match None {
1313
Err(_) => ()
14-
//~^ ERROR mismatched types: expected `std::option::Option<<generic #1>>`
15-
// but found `std::result::Result<<generic #2>,<generic #3>>`
14+
//~^ ERROR mismatched types: expected `core::option::Option<<generic #1>>`
15+
// but found `core::result::Result<<generic #2>,<generic #3>>`
1616
}
1717
}

branches/dist-snap/src/test/compile-fail/map-types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ fn main() {
1818
let x: Box<HashMap<~str, ~str>> = box HashMap::new();
1919
let x: Box<Map<~str, ~str>> = x;
2020
let y: Box<Map<uint, ~str>> = box x;
21-
//~^ ERROR failed to find an implementation of trait std::container::Map<uint,~str>
22-
// for ~std::container::Map<~str,~str>:Send
21+
//~^ ERROR failed to find an implementation of trait core::container::Map<uint,~str>
22+
// for ~core::container::Map<~str,~str>:Send
2323
}

branches/dist-snap/src/test/compile-fail/noexporttypeexe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ fn main() {
1818
// because the def_id associated with the type was
1919
// not convertible to a path.
2020
let x: int = noexporttypelib::foo();
21-
//~^ ERROR expected `int` but found `std::option::Option<int>`
21+
//~^ ERROR expected `int` but found `core::option::Option<int>`
2222
}

0 commit comments

Comments
 (0)