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 4b62cb6 commit 5aee352Copy full SHA for 5aee352
csharp/ql/test/utils/modelgenerator/dataflow/Summaries.cs
@@ -576,3 +576,24 @@ public class DImpl : D
576
}
577
578
579
+public class MemberFlow
580
+{
581
+ public class C
582
+ {
583
+ public string Prop { get; set; }
584
+
585
+ public string Field;
586
+ }
587
588
+ // SPURIOUS-neutral=Models;MemberFlow;M1;(Models.MemberFlow+C);summary;df-generated
589
+ public string M1(C c)
590
591
+ return c.Prop;
592
593
594
+ // summary=Models;MemberFlow;false;M2;(Models.MemberFlow+C);;Argument[0];ReturnValue;taint;df-generated
595
+ public string M2(C c)
596
597
+ return c.Field;
598
599
+}
0 commit comments