#![allow(incomplete_features)]
#![feature(test)]
#![feature(raw)]
#![feature(specialization)]
#![feature(associated_type_defaults)]
#![feature(fn_traits)]
pub mod bind;
pub mod syntax;
pub mod vm;
pub mod util;
pub mod error;
pub mod ast;
pub mod sema;
#[cfg(test)]
mod test {
#[test]
fn test() {
}
}