Gyanendra Banjare

Results 3 issues of Gyanendra Banjare

Added support for external function in AST::Function. It can be verified it in AST validation as follows. But in line 6113 of rust-parse-impl.h, `parse_external_item()` needs return type ExternalItem from parse_function()...

I tried this code: https://godbolt.org/z/vTPqxfeMa ```rust fn myfun((x, _): (i32, i32)) -> i32 { x } ``` I expected it to compile correctly and just throw warning function `myfun` is...

bug
codegen

The unused parentheses in parameters causes internal compiler error however it is perfectly fine in the body. rustc provides a nice warning and compiles the code. ### Code https://godbolt.org/z/xM4Mnvohr ```rust...

bug
parser