Skip to content

Commit 4b90596

Browse files
committed
---
yaml --- r: 79453 b: refs/heads/snap-stage3 c: fb82283 h: refs/heads/master i: 79451: 35650f5 v: v3
1 parent b0246c2 commit 4b90596

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-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: 124eb2119c78651cfaaa7a046a101fa2e20f83ca
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 7668fb2c75f53cca9594432da7b88e6030b059e2
4+
refs/heads/snap-stage3: fb82283a98ed646f4d8560e7288fb5fcf6fb9ffe
55
refs/heads/try: ac820906c0e53eab79a98ee64f7231f57c3887b4
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
mod x {
2+
pub fn g() -> uint {14}
3+
}
4+
5+
fn main(){
6+
// should *not* shadow the module x:
7+
let x = 9;
8+
// use it to avoid warnings:
9+
x+3;
10+
assert_eq!(x::g(),14);
11+
}

0 commit comments

Comments
 (0)