We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 898297b commit 1c380fbCopy full SHA for 1c380fb
powershell/ql/test/library-tests/dataflow/params/test.ps1
@@ -36,4 +36,13 @@ ThreeArgs -z $third -y $second $first
36
ThreeArgs -z $third $second -x $first
37
ThreeArgs -z $third -x $first $second
38
ThreeArgs -z $third $first -y $second
39
-ThreeArgs -z $third -y $second $first
+ThreeArgs -z $third -y $second $first
40
+
41
+function Invoke-InvokeExpressionInjection2
42
+{
43
+ param($UserInput)
44
+ Sink $UserInput # $ MISSING: hasValueFlow=1
45
+}
46
47
+$input = Source "1"
48
+Invoke-InvokeExpressionInjection2 -UserInput $input
0 commit comments