Changed from typedef to obj and def

This commit is contained in:
Nathan Braswell
2015-05-16 12:05:23 -04:00
parent 4bc42bc516
commit 65fd2ed9b7
27 changed files with 55 additions and 47 deletions

View File

@@ -1,7 +1,7 @@
import io:*;
import trivial_container:*;
typedef TemplateTest<T> {
obj TemplateTest<T> {
var a: int;
var b: T;
var c: trivialContainer<T>;
@@ -17,7 +17,7 @@ typedef TemplateTest<T> {
}
};
typedef MyInt int;
def MyInt int;
var c: MyInt;