Skip to content

Commit 2593e27

Browse files
committed
---
yaml --- r: 21062 b: refs/heads/snap-stage3 c: 28cd0ad h: refs/heads/master v: v3
1 parent 6b30cf9 commit 2593e27

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 6e93d67dbaeaef299bbcbb5cc9516d0efeb949c5
4+
refs/heads/snap-stage3: 28cd0ad54b2a5fde7949dd76ebffcb0532085f43
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libcore/core.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import vec::{immutable_copyable_vector, iter_trait_extensions, vec_concat};
1212
import iter::{base_iter, extended_iter, copyable_iter, times, timesi};
1313
import num::num;
1414
import ptr::ptr;
15+
import to_str::to_str;
1516

1617
export path, option, some, none, unreachable;
1718
export extensions;
@@ -24,6 +25,7 @@ export immutable_copyable_vector, iter_trait_extensions, vec_concat;
2425
export base_iter, copyable_iter, extended_iter;
2526
export tuple_ops, extended_tuple_ops;
2627
export ptr;
28+
export to_str;
2729

2830
// The following exports are the core operators and kinds
2931
// The compiler has special knowlege of these so we must not duplicate them

branches/snap-stage3/src/test/run-pass/trait-to-str.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#[no_core];
2+
3+
use core;
4+
5+
import core::{str, int, vec};
6+
17
trait to_str {
28
fn to_str() -> ~str;
39
}

0 commit comments

Comments
 (0)