PLC-lang/rusty

Method calls without parentheses should emit a warning/error

開放

#1,449 建立於 2025年3月28日

 (0 則留言) (0 個反應) (0 位負責人)Rust (71 個分叉)auto 404
good first issuemedium-priorityvalidation

倉庫指標

星標
 (351 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

Is your feature request related to a problem? Please describe. Currently, trying to call a method without () will simply generate a GEP-instruction and have no further effect. The method is never called and assigning the return-value will attempt to write the pointer value from the GEP. So far, I haven't been able to force a segfault due to this, but when trying to generate IR llvm will abort with an error during verification.

Describe the solution you'd like We should at the very least warn the user that the statement will result in UB, I'm fine with emitting an error aswell.

貢獻者指南