diff options
author | John Hodge <tpg@mutabah.net> | 2015-09-26 14:11:51 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2015-09-26 14:11:51 +0800 |
commit | 3828791d2c2d94b7751efb5ec9ec4d9a31b15b71 (patch) | |
tree | 8411221e77b6bba4c77138d7f9355aa62a9bab89 /bnf/ast_types.hpp | |
parent | f6f4a432967cf0b077002d888bfe3aaceeffa4d3 (diff) | |
download | mrust-3828791d2c2d94b7751efb5ec9ec4d9a31b15b71.tar.gz |
Fuck match statements, can't match them
Diffstat (limited to 'bnf/ast_types.hpp')
-rw-r--r-- | bnf/ast_types.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bnf/ast_types.hpp b/bnf/ast_types.hpp index 09896642..cef70bc5 100644 --- a/bnf/ast_types.hpp +++ b/bnf/ast_types.hpp @@ -234,6 +234,10 @@ public: {} }; +class TypeAlias: + public Item +{ +}; class Enum: public Item |