Convert 'import' to 'use'. Remove 'import' keyword.

This commit is contained in:
Brian Anderson
2012-09-07 18:08:21 -07:00
parent 1a8a0a77b1
commit 298eb8c726
78 changed files with 192 additions and 232 deletions

View File

@@ -263,8 +263,8 @@ fn test() {
#[test]
fn test_position() {
import str::as_c_str;
import libc::c_char;
use str::as_c_str;
use libc::c_char;
let s = ~"hello";
unsafe {