mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
328 B
Plaintext
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>
|