aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/native-src/native.rs
blob: 226580955d3fb607f93aabecb553b8ab70fba582 (plain) (blame)
1
2
3
4
5
6
7
// -*- rust -*-

unsafe fn main() {
  libc.puts(rustrt.str_buf("hello, native world 1"));
  libc.puts(rustrt.str_buf("hello, native world 2"));
  libc.puts(rustrt.str_buf("hello, native world 3"));
}