rustc errors out when compiling a ".rc" file if use std comes before the #link(...):
test:rc
use std;
#[link(name="test", vers="0.1")];
mod test;
test.rs:
Errors with:
test.rc:3:32: 3:33 error: expecting mod, found ;
test.rc:3 #[link(name="test", vers="0.1")];
rustc errors out when compiling a ".rc" file if
use stdcomes before the#link(...):test:rc
test.rs:
Errors with: