diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/expand/lang_item.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expand/lang_item.cpp b/src/expand/lang_item.cpp index 988dc0e0..5c92cd76 100644 --- a/src/expand/lang_item.cpp +++ b/src/expand/lang_item.cpp @@ -70,6 +70,7 @@ void handle_lang_item(const Span& sp, AST::Crate& crate, const AST::Path& path, else if( name == "ord" ) { DEBUG("Bind '"<<name<<"' to " << path); } else if( name == "unsize" ) { DEBUG("Bind '"<<name<<"' to " << path); } else if( name == "coerce_unsized" ) { DEBUG("Bind '"<<name<<"' to " << path); } + else if( name == "freeze" ) { DEBUG("Bind '"<<name<<"' to " << path); } else if( name == "iterator" ) { /* mrustc just desugars? */ } @@ -91,6 +92,7 @@ void handle_lang_item(const Span& sp, AST::Crate& crate, const AST::Path& path, } else if( name == "str_eq" ) { } + else if( name == "drop_in_place" ) { } // - builtin `box` support else if( name == "exchange_malloc" ) { } else if( name == "exchange_free" ) { } |