about summary refs log tree commit diff
path: root/src/test/run-pass/lazy-init.rs
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2013-02-01 19:43:17 -0800
committerGraydon Hoare <graydon@mozilla.com>2013-02-01 19:43:17 -0800
commit89c8ef792f7e7641abfac421ba1e8f90384883ec (patch)
tree676c75543864e5a81ba54449cc748981da00c497 /src/test/run-pass/lazy-init.rs
parente5e52d2437e239e16bab231903d2e72d16b26648 (diff)
downloadrust-89c8ef792f7e7641abfac421ba1e8f90384883ec.tar.gz
rust-89c8ef792f7e7641abfac421ba1e8f90384883ec.zip
check-fast fallout from removing export, r=burningtree
Diffstat (limited to 'src/test/run-pass/lazy-init.rs')
-rw-r--r--src/test/run-pass/lazy-init.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/lazy-init.rs b/src/test/run-pass/lazy-init.rs
index 662a4ddc61a..0ccecba58c0 100644
--- a/src/test/run-pass/lazy-init.rs
+++ b/src/test/run-pass/lazy-init.rs
@@ -12,4 +12,4 @@
 
 fn foo(x: int) { log(debug, x); }
 
-fn main() { let mut x: int; if 1 > 2 { x = 12; } else { x = 10; } foo(x); }
+pub fn main() { let mut x: int; if 1 > 2 { x = 12; } else { x = 10; } foo(x); }