mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
13 lines
364 B
Plaintext
13 lines
364 B
Plaintext
import rust
|
|
import utils.modelgenerator.internal.CaptureModels
|
|
import utils.test.InlineMadTest
|
|
import codeql.rust.dataflow.internal.ModelsAsData
|
|
|
|
module InlineMadTestConfig implements InlineMadTestConfigSig {
|
|
string getCapturedModel(Function c) { result = captureSource(c) }
|
|
|
|
string getKind() { result = "source" }
|
|
}
|
|
|
|
import InlineMadTest<InlineMadTestConfig>
|