Closed
Description
E.g. exhibiting #[no_std];
code normally requires passing extra flags to rustc (because we don't link to libc), so it would be good to be able to just parse, type-check and lint without linking, so that code snippets don't go completely out of date.
Maybe something like
```no_link
#[no_std];
#[start]
fn main(_argc: int, _argv: **u8) -> int { 0 }
```