Files
codeql/rust/ql/lib/utils/test/InlineMadTest.qll
Simon Friis Vindum a53f664e85 Rust: Fix bad join
2025-04-03 14:33:02 +02:00

13 lines
328 B
Plaintext

private import rust as R
private import codeql.mad.test.InlineMadTest
private module InlineMadTestLang implements InlineMadTestLangSig {
class Callable = R::Function;
string getComment(R::Function callable) {
result = callable.getAPrecedingComment().getCommentText()
}
}
import InlineMadTestImpl<InlineMadTestLang>