diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2013-02-01 19:43:17 -0800 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2013-02-01 19:43:17 -0800 |
| commit | 89c8ef792f7e7641abfac421ba1e8f90384883ec (patch) | |
| tree | 676c75543864e5a81ba54449cc748981da00c497 /src/test/run-pass/foreign-src | |
| parent | e5e52d2437e239e16bab231903d2e72d16b26648 (diff) | |
| download | rust-89c8ef792f7e7641abfac421ba1e8f90384883ec.tar.gz rust-89c8ef792f7e7641abfac421ba1e8f90384883ec.zip | |
check-fast fallout from removing export, r=burningtree
Diffstat (limited to 'src/test/run-pass/foreign-src')
| -rw-r--r-- | src/test/run-pass/foreign-src/foreign.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/foreign-src/foreign.rs b/src/test/run-pass/foreign-src/foreign.rs index f560d779741..df0d1bcd4b9 100644 --- a/src/test/run-pass/foreign-src/foreign.rs +++ b/src/test/run-pass/foreign-src/foreign.rs @@ -12,7 +12,7 @@ // -*- rust -*- -fn main() { +pub fn main() { libc.puts(rustrt.str_buf("hello, extern world 1")); libc.puts(rustrt.str_buf("hello, extern world 2")); libc.puts(rustrt.str_buf("hello, extern world 3")); |
