diff options
Diffstat (limited to 'src/parse/root.cpp')
-rw-r--r-- | src/parse/root.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parse/root.cpp b/src/parse/root.cpp index c88b51a5..759c65ac 100644 --- a/src/parse/root.cpp +++ b/src/parse/root.cpp @@ -666,6 +666,8 @@ AST::Impl Parse_Impl(TokenStream& lex, bool is_unsafe/*=false*/) lex.putback(tok);
impl_type = Parse_Type(lex);
+ // TODO: Handle the "impl Any + Send" syntax here
+
if( GET_TOK(tok, lex) == TOK_RWORD_FOR )
{
// Implementing a trait for another type, get the target type
|