aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/import3.rs
blob: 16aa43eab83724052941d0d8c404141da759f6b8 (plain) (blame)
1
2
3
4
5
6
// error-pattern: main is not a module or crate
import main.bar;

fn main(vec[str] args) {
  log "foo";
}