1
Fork 0

move infer into typeck module

This commit is contained in:
Niko Matsakis 2012-05-15 14:06:51 -07:00
parent 26dc48d67f
commit 250bbddb90
2 changed files with 1 additions and 1 deletions

View file

@ -49,10 +49,10 @@ mod middle {
mod reachable; mod reachable;
} }
mod ty; mod ty;
mod infer;
mod ast_map; mod ast_map;
mod resolve; mod resolve;
mod typeck { mod typeck {
mod infer;
mod astconv; mod astconv;
mod collect; mod collect;
mod vtable; mod vtable;