salsa/examples/hello_world/main.rs

14 lines
286 B
Rust
Raw Normal View History

2018-09-28 15:26:53 +00:00
mod class_table;
mod compiler;
2018-09-28 15:40:20 +00:00
mod implementation;
use self::class_table::ClassTableQueryContext;
use self::implementation::QueryContextImpl;
2018-09-28 15:26:53 +00:00
fn main() {
2018-09-28 15:40:20 +00:00
let query = QueryContextImpl::default();
for f in query.all_fields().of(()).iter() {
println!("{:?}", f);
}
2018-09-28 15:26:53 +00:00
}